// Search Engine text clear on focus
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = "";
} 
function breakout()
{
	window.focus();
}
