<!--
window.onload = function(){
set_search();
};

function clear_search()
{
	if (document.getElementById("searchBox").value == "SEARCH TSU" ) 
	{
		document.getElementById("searchBox").value = "";
	}
}

function set_search()
{
	if (document.getElementById("searchBox").value == "") 
	{
		document.getElementById("searchBox").value = "SEARCH TSU";
	}
}
//-->

