﻿// JScript File

    function PopUp(doc, w, h)
    {
        var leftVal = (screen.width - w) / 2;
        var topVal = (screen.height - h) / 2;
                    
        if (doc == 'AanvraagDistrLicenseHelp')
        {
            NewWindow=window.open("AanvraagHelp.aspx","Help","resizable=1,width=" + w + ",height=" + h + ",left="+leftVal+",top=" + topVal + "");
        }
        
        if (doc == 'AanvraagDistrLicensePrintReport')
        {
            NewWindow=window.open("AanvraagHelpPrintTest.aspx","PrintTest","resizable=1,width=" + w + ",height=" + h + ",left=" + leftVal + ",top=" + topVal + "");
        }
        
        if (doc == 'FacturenHelp')
        {
            NewWindow=window.open("/FacturenHelpPopUp.aspx","PrintTest","resizable=1,width=" + w + ",height=" + h + ",left=" + leftVal + ",top=" + topVal + "");
        }
        
        if (doc == 'LicentieKlasseNotPresent')
        {
            NewWindow=window.open("LicentieKlasseNotPresentPopUp.aspx","PrintTest","resizable=1,width=" + w + ",height=" + h + ",left=" + leftVal + ",top=" + topVal + "");
        }
        
        if (window.focus)
        {
            NewWindow.focus();
        }
    }   
        
    function DoFocus(source)
    {
        source.style.backgroundColor = "White";
    }

    
    
   