﻿function OpenPopupWindow(url)
{
    var options = "status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,Width=700"
    window.open(url, "_blank", options);
}

function RedirectOnEnter(e, id)
{
    var code;
    if (window.event)
    {
        // IE
        code = e.keyCode;
    }
    else if (e.which)
    {
        // Firefox etc
        code = e.which;
    }
    else
    {
        code = 0;
    }
    
    if (code == 13)
    {
        var btn = document.getElementById(id);
        if (btn != null)
        {
            e.returnValue = false;
            e.cancel = true;
            btn.click();
            return false;
        }
    }
    
    return true;
}

