﻿// JScript File

    function openPopup(strOpen)
    {
        open(strOpen, "Info", "status=0, width=420, height=300, top=70, left=220, scrollbars=yes");
    }  
    
    function openPopupWH(strOpen,width,height)
    {
        open(strOpen, "Info", "status=0, width=" + width + ", height=" + height + ", top=70, left=220, scrollbars=yes");
    }  
    
    function openPopupNWH(strOpen,name,width,height)
    {
        open(strOpen, name, "status=0, width=" + width + ", height=" + height + ", top=70, left=220, scrollbars=yes");
    }  