// <!--
function clearText(thefield){
       if (thefield.defaultValue==thefield.value)
             thefield.value = ""
       else if( document.forms[0].q ) {
                 document.forms[0].q.focus();
                 document.forms[0].q.select();
       }
} 
// -->