<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);


maps = new Array();

window.onload = function(){
	if (document.getElementById){
		if (document.getElementById("bigMap")){
		  for (i = 1; i <= 21; i++){
		    maps[i-1] = new Image();
		    maps[i-1].src = "../images/map/region_"+i+".png";
		  }
		}
	}
}

function showMapFromArea(id){
  if (maps.length){
    inputObj = document.getElementById("area_name_"+id);
    inputObj.checked = "true";
    inputObj.focus();
    showMap(id);
  }
}

function showMap(id){
  if (maps.length){
    var map = document.getElementById("map");
    map.src = maps[id-1].src;
  }
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
-->