﻿// JScript File

function StandardPopUpWindow(url)
{
    try
    {
        // var W = screen.availWidth ;
        // var H = screen.availHeight;
        // alert(url);
         strFeatures  = 'width=500,height=600,status=no,toolbar=no,menubar=no,location=no,resizable=yes,top=10,left=350,scrollbars=yes';
         obj = window.open(url, '_blank', strFeatures, false);
         return false;
    } 
    catch(err) 
    {
        alert(err.description);
    }

}

