function searchbox(form, input, text)
{
	input.onblur = function(o)
	{
		if (input.value == "")
		{
			input.setAttribute("style", "color:#999");
			input.value = text;
		}
	}
	
	input.onfocus = function(o)
	{
		input.setAttribute("style", "color:#333");
		if (input.value == text)
		{
			input.value = "";
		}
	}

	form.onsubmit = function(o)
	{
		if ((input.value == text) || (input.value == ""))
		{
			return false;
		}
		return true;
	}

	if (input.value == "" || input.value == text)
	{
		input.setAttribute("style", "color:#999");
		input.value = text;
	}
 
 	else
 	{
   		input.setAttribute("style", "color:#333");
	}
 
}
