﻿// JScript File
function OpenWindow(p_url, p_width, p_height, p_settings)
{
    if(null != p_settings && typeof(p_settings) != "undefined")
    {
        p_settings += ", width=" + p_width + ", height=" + p_height;
    }
    else
    {
        p_settings = "status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=0, scrollbars=0" + ", width=" + p_width + ", height=" + p_height;
    }
    
    window.open(p_url, "", p_settings);
}