function switchcolor( tabel, schakel, kleur ) {
	if ( schakel ) {
		switch ( kleur ) {
			case 1:
				tabel.style.backgroundColor = '#F3E0E0';
				break;
			case 2:
				tabel.style.backgroundColor = '#F3E0E0';
				break;
			case 3:
				tabel.style.backgroundColor = '#CF7A7A';
				break;
			case 4:
				tabel.style.backgroundColor = '#DDB7B7';
				break;
			case 5:
				tabel.style.backgroundColor = '#E3E8C1';
				break;
			case 6:
				tabel.style.backgroundColor = '#D0D997';
				break;
			case 7:
				tabel.style.backgroundColor = '#889E71';
				break;
			case 8:
				tabel.style.backgroundColor = '#E3E8C1';
				break;	
			case 9:
				tabel.style.backgroundColor = '#F3E0E0';
				break;
			case 10:
				tabel.style.backgroundColor = '#990000';
				break;
			case 11:
				tabel.style.backgroundColor = '#E3E8C1';
				break;				
		}
	} else {
		switch ( kleur ) {
			case 1:
				tabel.style.backgroundColor = '#EBCCCC';
				break;
			case 2:
				tabel.style.backgroundColor = '#FFFFFF';
				break;
			case 3:
				tabel.style.backgroundColor = '#DD9999';
				break;
			case 4:
				tabel.style.backgroundColor = '#EEE5E5';
				break;
			case 5:
				tabel.style.backgroundColor = '#D0D997';
				break;
			case 6:
				tabel.style.backgroundColor = '#FFFFFF';
				break;
			case 7:
				tabel.style.backgroundColor = '#9BB481';
				break;
			case 8:
				tabel.style.backgroundColor = '#F1F4E0';
				break;
			case 9:
				tabel.style.backgroundColor = '#FFFFFF';
				break;	
			case 10:
				tabel.style.backgroundColor = '#A44444';
				break;	
			case 11:
				tabel.style.backgroundColor = '#FFFFFF';
				break;					
		}
	}
}


function pviiClassNew(obj, new_style) { //v2.7 by PVII
  obj.className=new_style;
}
