// JavaScript Document

// default text on click in fieldss
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}

function restoreText(thefield){
if (thefield.value=="")
	thefield.value = thefield.defaultValue;
}

function ShowSearchingDial() {
	document.getElementById('search_load').style.visibility='visible'
}
