<!--
function popUp(sUrl, iWidth, iHeight) {
  var oNewWin = window.open(sUrl, '', 'resizable=0,scrollbars=1,toolbars=0,margin=0,status=0,height=' + iHeight + ',width=' + iWidth);
  return;
}



function openWin(theURL, theName, theWidth, theHeight)
{
   var width=theWidth;
   var height=theHeight;
   var theName=theName;
   var winl = (screen.width - width) / 3;
   var wint = (screen.height - height) / 2;
   var theFeatures = "width=" + width + ",height=" + height +",top="+wint+",left="+winl+",scrollbars=yes";
                                
   var theWin = window.open(theURL,theName,theFeatures);
         theWin.focus();
}



function videoPopUp(URL, thisTitle)  {
     window.open(URL, thisTitle, "height=300,width=350,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,directories=no");
}


function popUp2(sUrl, iWidth, iHeight) {
  var oNewWin = window.open(sUrl, '', 'resizable=0,scrollbars=0,toolbars=0,margin=0,status=0,height=' + iHeight + ',width=' + iWidth);
  return;
}
// -->