﻿function MenuOver(obj) {
    obj.style.backgroundPosition = 'bottom';
}
function MenuOut(obj) {
    obj.style.backgroundPosition = '0px 1px';
}
function goTo(URL) {
    window.location.href = URL;
}
function ShowHide(id) {
    var obj = document.getElementById(id);
    if (obj.style.display == "block")
        obj.style.display = "none";
    else
        obj.style.display = "block";
}
function Radio(obj) {
    obj.checked = true;
    if (obj.id == "ctl00_CPH1_rd1")
        document.getElementById("ctl00_CPH1_rd2").checked = false;
    else
        document.getElementById("ctl00_CPH1_rd1").checked = false;
}
function setStatus(UserName) {
    var select = document.getElementById("Status_" + UserName);
    document.getElementById("ctl00_CPH1_hfStatus").value = select.options[select.selectedIndex].value;
}