//Clears default text in an input field only if the text is the default
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}
