function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }

function validIconHighlight(element, value)
 {
     element.src = ms_images_url + "/" + (value ? "h_" : "") + element.id + ".gif";
 }
