function OpenPopup(sURL,name,w,h) {
  popWin=this.open(sURL,name,"width="+w+",height="+h+",toolbar=no,resizable=yes,menubar=no,location=no,scrollbars=yes,screenX=0,screenY=0");
  if(popWin == null)
  {
        alert("This site makes use of popup windows. It appears you have a popup blocker enabled, which is preventing\nthe site from working correctly. If you wish to use the site, please disable the popup blocker for this site.");
        return;
  }
  if (popWin.opener == null) popWin.opener = self;
    popWin.focus();
}


