function openMap(url,wi,hi){
var screenWidth = window.screen.availWidth;
var screenHeight = window.screen.availHeight;
var windowWidth = wi; 
var windowHeight = hi;
var topPosition = 0; 
var leftPosition = 0;

if (screenWidth < windowWidth) {
  windowWidth = screenWidth; 
} else {
  leftPosition = (screenWidth - windowWidth) /2; 
}

if (screenHeight < windowHeight) {
  windowHeight = screenHeight; 
} else {
  topPosition = (screenHeight - windowHeight) /2;
}

var winOption = "width=" + windowWidth + ",height=" + windowHeight + ",top=" + topPosition + ",left=" + leftPosition;


mw =window.open(url,"card",winOption);
mw.focus();}



function openMap02(url,x,y){
	mw = window.open(url,"","width="+x+",height="+y+",directries=0,location=0,menubar=0,scrollbars=0,status=0,toolbar=0,resizable=1");
	mw.focus();
}


function openMap03(url,x,y){
	mw = window.open(url,"","width="+x+",height="+y+",directries=0,location=0,menubar=0,scrollbars=1,status=0,toolbar=0,resizable=1");
	mw.focus();
}


function NewWindow02(wname){
window.open(wname,"sub",'toolbar=0,directories=0,status=0,resizable=1,scrollbars=1,menubar=0,left=0,top=0,width=650,height=500');  
}



function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}