function searchbox(x,step)
{
	if(x.value == "Search" && step == "focus") 
	{
		x.value = "";
		return;
	}
	if(x.value == "" && step == "blur") 
	{
		x.value = "Search";
		return;
	}
}