function LoadURL()
{
    var linkSrc = "http://jobsearch.gobananas.in/?JSR*qsAjs=";
    var tmpObj = document.getElementById("txtKeyword").value;
    if(tmpObj == "Put Job Titles, Location, Company Name, Skills, Industry") { tmpObj = ""; }
    linkSrc += "&qsKW=" + tmpObj;
    window.location = linkSrc;
    return false;
}

function clickButton(e, buttonid)
{ 
    var bt = window.document.getElementById(buttonid);
    if (bt)
    { 
        if(navigator.appName.indexOf("Netscape")>(-1))
        {
            if (e.keyCode == 13) { return LoadURL(); }
        } 
        if (navigator.appName.indexOf("Microsoft Internet Explorer")>(-1))
        { 
            if (event.keyCode == 13) { return LoadURL(); }
        } 
    } 
}