
var textsearch = '<div class="searchBox"><form id="form1" name="form1" method="get" action="/search.php">' +
'<table width="145" height="15" border="0" cellpadding="0" cellspacing="0">' +
'<tr><td bgcolor="#FFFFFF"><input onblur="DoBlur(this);" onclick="EraseSearch(this);" name="search" type="text" id="search" border="0" style="padding: 0px 0px 0px 4px; border:0px; width:120px; height:15px; font-size:10px;" value="SEARCH" /></td>' +
'<td width="19" valign="middle"><input type="image" src="https://www.tshirthell.com/images/UI/images/search_arrow.gif" name="Submit" value="Submit" /></td>' +
'</tr></table></form></div>';
var cartbutt = '<div class="cartButton"><a href="https://www.tshirthell.com/store/cart.php"><img src="/images/UI/images/cart.gif" border="0"></a></div>';

    function replaceSearchBox() {
	  document.write(textsearch);
	  document.write(cartbutt);
    }


    function EraseSearch(obj) {
    	obj.value = '';
    }
    
    function DoBlur(obj) {
    	if(obj.value.length == 0){
    		obj.value = "SEARCH";
    	}
    }
    // ]]>
