﻿// JScript File

function popUp_Window(URL,Wwidth,Wheight) {
var pInfo;
            pInfo=URL;
            pInfo+='toolbar=0,';
            pInfo+='scrollbars=1,';
            pInfo+='location=0,';
            pInfo+='statusbar=0,';
            pInfo+='menubar=0,';
            pInfo+='resizable=0,';
            pInfo+='resizable=1,';
            pInfo+='width=800,';
            pInfo+='height=325';
            pInfo+='left=100';
            pInfo+='right=100';
            window.open(URL, 'PrintPop', pInfo);
            }