// put "search" in the search box
function loadsearch()
{
	var searchterm = document.getElementById("searchterm");
	// put text in the box
	searchterm.value = document.getElementById("searchtext").value;
	searchterm.onfocus = function() { searchterm.value = ""; };
}

// add to the onload stack
LoadEvent(loadsearch);