<!--
 function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }
 
 function reFill(theText) {
	 if (theText.value == "") {
         theText.value =  theText.defaultValue;
		 return false;
     }
}

if (window.addEventListener)
    window.addEventListener("load", doClear, reFill, false);
else if (window.attachEvent)
    window.attachEvent("onload", doClear, reFill);
//-->
