	<!--
	function Marker(where, status) {
		switch (status)
		{
		case 1 : document.getElementById(where).style.backgroundColor = ""; break;
		case 2 : document.getElementById(where).style.backgroundColor = "red"; break;
		case 3 : document.getElementById(where).style.backgroundColor = "darkblue"; break;
		case 4 : document.getElementById(where).style.backgroundColor = "lightblue"; break;
		default: document.getElementById(where).style.backgroundColor = "";
		}
	}
	//-->
