function go(where)
{
    var url;
    
    switch (where)
    {
        case "about":
            url = "../about/home.aspx";
            break;
        case "why":
            url = "../why/home.aspx";
            break;
        case "viewjobs":
            url = "../jobs/home.aspx";
            break;
        case "news":
            url = "../newsevents/home.aspx";
            break;
        case "students":
            url = "../students/home.aspx";
            break;
        case "home":
            url = "../home.aspx";
            break;
        case "profile":
            url = "../myEA/login.aspx";
            break;
        case "help":
            url = "../help/home.aspx";
            break;
        default:
            break;
    }
    window.location = url;
}

function getRec(id)
{
    document.getElementById("recid").value = id;
    __doPostBack();
}

