// Clears out default text from the field
function clearText(thefield){
	if (thefield.defaultValue==thefield.value){
		thefield.value = ""
	}
} 