<!-- <![CDATA[
// leave for backwards compatiblility in cgi's
function popup(theURL,winName,features) { 
// example:
//  'index.aspx','myWindow','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=100,height=100'
  window.open(theURL,winName,features);
}
function pop(theURL,winName,width,height) {
    var strFeatures = "scrollbars=yes,resizable=yes";
    if (width != null) {
        strFeatures = strFeatures + ",width=" + width;
    } else {
        strFeatures = strFeatures + ",width=600" // default width
    }
    if (height != null) {
        strFeatures = strFeatures + ",height=" + height;
    } else {
        strFeatures = strFeatures + ",height=500" // default height
    }
    window.open(theURL,winName,strFeatures);
}
// theURL should be defined as the absolute url of the website. "/popup/example.aspx"
// the virtual root will be added
function poproot(theURL,winName,width,height) {
    var strFeatures = "scrollbars=yes,resizable=yes";
    if (width != null) {
        strFeatures = strFeatures + ",width=" + width;
    } else {
        strFeatures = strFeatures + ",width=600" // default width
    }
    if (height != null) {
        strFeatures = strFeatures + ",height=" + height;
    } else {
        strFeatures = strFeatures + ",height=500" // default height
    }
    window.open(vRoot + theURL,winName,strFeatures);
}
function popfaq() {
   window.open(vRoot + '/faq/','faq','scrollbars=yes,resizable=yes,width=600,height=500');
}
function popfaqmk() {
   window.open(vRoot + '/faqmk/','faqmk','scrollbars=yes,resizable=yes,width=600,height=500');
}
function popFlashDemoMainPage() {
   window.open(vRoot + '/tutorial/demos/','Multimedia_Tutorials','scrollbars=yes,resizable=yes,width=800,height=600');
}
function popFlashDemo(demoID,winName) { //<a href="javascript: popFlashDemo('Propay_Presentation','Propay_Presentation')">Watch video</a>
    var theURL = vRoot + "/tutorial/demos/movies.aspx?demo=" + demoID;
    var strFeatures = "scrollbars=yes,resizable=yes,width=800,height=600";
    window.open(theURL,winName,strFeatures);
 }
 function popWebinarSpeed(demoID) { 
    var theURL = vRoot + "/popup/broadbandOrDialup.aspx?demo=" + demoID;
    var strFeatures = "scrollbars=yes,resizable=yes,width=570,height=320";
    var winName = "BroadbandOrDialup";
    window.open(theURL,winName,strFeatures);
 }
// ]]> -->
