function sOnBlur(theText){
     if(theText.value == ""){
     	theText.value = theText.defaultValue
     }
}
function sOnFocus(theText){
    if(theText.value == theText.defaultValue){
    	theText.value = ""
    }
}