function coordinates() {
	x=event.clientX; y=event.clientY; x=x-205; y=y-236; alert("X="+x+" Y="+y)
}

function mapHighlight(dst,state) {
	if (document.getElementById(dst)) { var strTxtColor=""; strColor=""; strPadding=""; strBorder=""; 
		if (state==1) {strTxtColor="#006699"; strColor="#ffffff"; strPadding="3px"; strBorder="1px solid #cccccc"}
		document.getElementById(dst).style.color=strTxtColor; document.getElementById(dst).style.backgroundColor=strColor;
		document.getElementById(dst).style.padding=strPadding; document.getElementById(dst).style.border=strBorder;
	}
}

