// JavaScript Document
<!--

function Map(wind){
 if(wind==1){
  win=window.open("map.html","wind","toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,width=550,height=450");
 }else if(wind==2){
  win=window.open("map02.html","wind","toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,width=550,height=440");
	}else if(wind==3){
  win=window.open("map03.html","wind","toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,width=550,height=542");
	}else if(wind==4){
  win=window.open("map04.html","wind","toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,width=550,height=500");
	}
}

function CloseWin(){
window.close();
}


//-->
