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

