﻿function OpenDialog(URL,Name, Width, Height)
{
    if (document.all)
    {
        var ret = window.showModalDialog("Admin/Forms/OpenDialog.aspx?URL='"+URL+"'", Name, "center:yes;resizable:yes;help:no;dialogWidth:"+Width+"px;dialogHeight:"+Height+"px;status=yes;scroll:no");
        window.location = window.location.href;
    }
    else
        OpenWindow(URL,Name, Width, Height);
    
    return ret;
}

function OpenZoomedDialog(URL,Name)
{
    return OpenDialog(URL,Name, screen.width-200, screen.height-200);
}