/*Clear default form value script- By Ada Shimar (ada@chalktv.com)

If you have set the field's Value so that there is default text in the field, this clears the field when the user clicks in it
add:  onFocus="clearText(this)"    //to each input tag*/
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 