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