function showhideSearchImg(show) {
    if (show) {
        document.getElementById("SearchBoxDiv").style.left = "50px";
        document.getElementById("SearchBoxTD").style.width = "170";
        document.getElementById("SearchBoxTbl").style.width = "170px";
    }
    else {
        document.getElementById("SearchBoxDiv").style.left = "10";
        document.getElementById("SearchBoxTD").style.width = "210px";
        document.getElementById("SearchBoxTbl").style.width = "210px";
        document.getElementById("QueryTextBox").focus();
    }
}

document.write('<IMG id="searchImg" class=srch onClick="showhideSearchImg(false);" style="position:relative;top:78px;left:5px;z-index:5;"SRC="/images/search.png" BORDER="0" WIDTH="220" HEIGHT="32">')
document.write('<DIV id="SearchBoxDiv" style="position:relative;top:45px;left:55px;width:150px;z-index:5;">')
document.write('<form style="margin:0px;padding:0px;" id="LuceneSearchBox" onsubmit="return false;">')
document.write('<TABLE border="0" id="SearchBoxTbl" style="WIDTH: 165; HEIGHT: 30px;"><TR>')
//IE
if (MSIE) {
    document.write('<TD id="SearchBoxTD" width=185><input style="padding-top:3px;margin-top:0px;width:100%" onClick="showhideSearchImg(false);" onBlur="showhideSearchImg(true);" class=srch type=text onkeydown="if(event.which || event.keyCode){if ((event.which == 13) || (event.keyCode == 13)) {SubmitQuery();;return false;}} else {return true};" id=QueryTextBox name=QueryTextBox /></TD>')
document.write('<TD style="padding-top:2px"><img id=SearchImg src="/images/srch.png" onclick="SubmitQuery();" onmouseover="MouseOver(SearchImg);" onmouseout="MouseOut(SearchImg);" style="cursor:hand;" /></TD>')
}
else {
    document.write('<TD id="SearchBoxTD" width=185><input style="padding-top:0px;margin-top:0px;width:100%" onClick="showhideSearchImg(false);" onBlur="showhideSearchImg(true);" onkeydown="if(event.which || event.keyCode){if ((event.which == 13) || (event.keyCode == 13)) {SubmitQuery();;return false;}} else {return true};"  class=srch type=text id=QueryTextBox name=QueryTextBox /></TD>')
document.write('<TD><img id=SearchImg src="/images/srch.png" onclick="SubmitQuery();" onmouseover="MouseOver(SearchImg);" onmouseout="MouseOut(SearchImg);" style="cursor:hand;" /></TD>')
}
document.write('</TR>')
document.write('</TABLE>')
document.write('</form></DIV>')

