﻿// JScript File



function openWin(url,winname,options)
{
    var mine =window.open(url,winname,options);
    if(mine)
    {
    //fine
    }
    else
    {
        alert('A popup blocker has been detected.  You will need to allow popups on this site to use this feature.');
    }
    
}
function openHelpWin(url)
{
    openWin(url,'HelpWin','menubar=0,resizable=1,width=725,height=350,scrollbars=0,status=0,screenx=20,screeny=50,left=20,top=50');
}

 
