﻿function srcTrapKD(event, btn) {
    if (document.all) {
        if (event.keyCode == 13) {
            event.returnValue = false;
            event.cancel = true;
            btn.click();
        }
    }
    else if (document.getElementById) {
        if (event.which == 13) {
            event.returnValue = false;
            event.cancel = true;
            btn.click();
        }
    }
    else if (document.layers) {
        if (event.which == 13) {
            event.returnValue = false;
            event.cancel = true;
            btn.click();
        }
    }
}

function doSearch() {
    var GlbSrc = document.form1.txt_GlbSrc.value;
    GlbSrc = escape(GlbSrc);
    document.location.href = "/websearch.aspx?mq=" + GlbSrc;
}

function roll(img_name1, img_src1) {
    document[img_name1].src = img_src1;
}

function login() {

    var myURL = "login.aspx?lu=" + document.form1.User_Usr.value + "&lp=" + document.form1.User_Pwd.value;
    document.location.href = myURL;
}

function doSearch() {
    var GlbSrc = document.form1.txt_GlbSrc.value;
    GlbSrc = escape(GlbSrc);
    document.location.href = "/websearch.aspx?mq=" + GlbSrc;
}  