function mOvr(src,clrOver) {
	if (!src.contains(event.fromElement)) {
		src.bgColor = clrOver;
                src.style.cursor = 'hand';
	}
}

function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.bgColor = clrIn;
	}
}

function openwin(theMapServ) {
	var thewidth=eval(screen.width-50);
	var theheight=eval(screen.height-120);
	window.open("http://hostims.giscoe.com/website/" + theMapServ + "/","mapwindow","status,resizable,width=" + thewidth + ",height=" + theheight + ",top=20,left=20");
}