	function change_color(x,y,z) {
		if(y == 0){
			if(z == ""){
				thecolor = '#FFFFFF';
			} else if(z == "1"){
				thecolor = '#F9F6F6';
			} else if(z == "2"){
				thecolor = '#CCCCCC';
			} else if(z == "3"){
				thecolor = '#FAFAFA';
			} else if(z == "4"){
				thecolor = '#66FFFF';
			} else if(z == "5"){
				thecolor = '#DDFFFF';
			}

		} else {

			thecolor = '#FFF3F3';
		}
	
		document.getElementById(x).style.backgroundColor = thecolor;
	}
	
