function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openMyPopup(url,W,H,target)
{
   if (!url) url = "";
   if (!W) W=200;
   if (!H) H=200;
   if (!target) target="_new";
   var X = (screen.width/2)-(W/2);
   var Y = (screen.height/2)-(H/2);
   var winPref = "width=" + W + ",height=" + H
               + ",innerWidth=" + W + ",innerHeight=" + H
               + ",left=" + X + ",top=" + Y
               + ",screenX=" + X + ",screenY=" + Y
               + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no, titlebar=no";
   openMyPopup.popup = window.open(url, target, winPref );
   openMyPopup.popup.resizeTo(1*W,1*H);
   openMyPopup.popup.focus();
  // return true;
}