function doSearch(){
    document.getElementById("frmSearch").submit()
}

function submitenter(myfield,e)
{
    var keycode;
    if (window.event) keycode = window.event.keyCode;
    else if (e) keycode = e.which;
    else return true;

    if (keycode == 13)
        {
        doSearch();
        return false;
        }
    else
    return true;
}

function ClearText(textbox, text) {
    if (textbox.value == text) {
        textbox.value = "";
    }
}

function PopulateText(textbox, text) {
    if (textbox.value == "") {
        textbox.value = text;
    }
}