// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
	newWin = window.open(theURL,winName,features);
	newWin.focus();
}


function newWindow(url,winName,width,height,left,top) {
	param = "width=" + width + ",height=" + height + ",tool bar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=" + left + ",top=" + top;
	newWin = window.open(url,winName,param);
	newWin.resizeBy(0,0);
	newWin.focus();
}


function newWindow01(url,winName,width,height,left,top) {
	param = "width=" + width + ",height=" + height + ",tool bar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=" + left + ",top=" + top;
	newWin = window.open(url,winName,param);
	newWin.resizeBy(0,0);
	newWin.focus();
}

function openCordinate(theURL) { //v2.0
  var sWin = window.open(theURL,"sWin","width=540,height=500,scrollbars=yes,resizable=yes,");
  sWin.focus();
}

function openShop(theURL) { //v2.0
  var sWin = window.open(theURL,"sWin","width=600,height=500,scrollbars=yes,resizable=yes,");
  sWin.focus();
}

function openWin(theURL,winName) {
	var param  = "width=660,height=580,scrollbars=yes,resizable=yes,"
	var newWin = window.open(theURL,winName,param);
	newWin.focus();
}

function openWin1(theURL,winName,width,height) {
	var param  = "width=" + width + ",height=" + height + ",scrollbars=yes,resizable=yes,"
	var newWin = window.open(theURL,winName,param);
	newWin.focus();
}


function openCalendar(theURL) { //v2.0
  var sWin = window.open(theURL,"sWin","width=840,height=700,scrollbars=yes,resizable=yes,");
  sWin.focus();
}
