// JavaScript Document

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

function popUpWin(URL,w,h) {
  XX=(screen.width-w)/2;
  YY=(screen.height-h)/2;
  poppedUpWin=window.open(URL,'PopUpWin','width='+w+',height='+h+',resizable=yes,status=no,title=yes,toolbar=no,location=no,scrollbars=no,screenX='+XX+',screenY='+YY+',top='+YY+',left='+XX);
  ns = (navigator.appVersion.indexOf("MSIE")<0) ? true : false; //alert(ns);
  if (ns && poppedUpWin) { poppedUpWin.focus(); }
}