function popUp(sUrl, iWidth, iHeight) {
  var oNewWin = window.open(sUrl, '', 'resizable=0,scrollbars=0,toolbars=0,margin=0,status=0,height=' + iHeight + ',width=' + iWidth);
  return;
}



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=1,toolbars=0,margin=0,status=0,height=' + iHeight + ',width=' + iWidth);
  return;
}
