
window.onload=function()
{
sl=document.getElementById("searchform");
if (sl)
	{
	var sLink=sl.href;
	var img=sl.firstChild;
	var imgLink=img.src;
	var oDiv=document.createElement("div");
	oDiv.id="searchform";
	oDiv.style.background="transparent url("+imgLink+") no-repeat";
	oDiv.style.opacity="inherit";
	oDiv.style.filter="inherit";
	var oForm=document.createElement("form");
	oForm.method="POST";
	oForm.action=sLink;
	var oInput=document.createElement("input");
	oInput.name="searchstr";
	oInput.id="searchstr";
	var oSubmit=document.createElement("input");
	oSubmit.name="sub";
	oSubmit.id="sub";
	oInput.type="text";
	oSubmit.type="submit";
	oForm.appendChild(oInput);
	oForm.appendChild(oSubmit);
	oDiv.appendChild(oForm);
	sl.parentNode.replaceChild(oDiv,sl);
	}
	return true;
}




