
function OpenWindow(
    url, 
    name, 
    width, 
    height)
{
    var windowAttributes = "toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height;
    
    window.open(
        url,
        name,
        windowAttributes);
}
