<!--

window.onerror = killErrors; 
function killErrors() { return true; } 

var sId="";

/* ×ø±êÄ£Ê½ */

function MouseOverMap(x1,y1,x2,y2,id) {
  
	var divElm = document.getElementById("leveldiv");
	var Left =x1+36;
	var Top = y1+47;
	var Right = parseInt(x2 - x1);
	var bottom = parseInt(y2 - y1);
	
	divElm.style.border = "solid 1px #FF0000";
	divElm.style.left = Left;
	divElm.style.top = Top;
	divElm.style.width = Right;
	divElm.style.height = bottom;
	divElm.style.cursor = "pointer";

	try{
		if (id!=""){
			sId=id;
			var titleElem = document.getElementById("title"+id.toString());
			titleElem.style.backgroundColor="#99ff99";
		}else{
			sId="";
		}
	}catch(e){
	  
  }
}

function MouseOutMap() {
  var divElm = document.getElementById("leveldiv");
  divElm.style.border = "";
  if (sId!=""){
  	var titleElem = document.getElementById("title"+sId.toString());
  	titleElem.style.backgroundColor="";
  	sId="";
  }
}

function js_callpage(htmlurl) { 
  var newwin=window.open(htmlurl,"newWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=140px,left=245px,width=502,height=400 "); 
  newwin.focus(); 
  return false; 
} 
//-->