<!-- CLEAR THIS SCRIPT -->

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

<!-- FILL THIS SCRIPT -->

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