function verificaE(obj,txt){
    f = document.mform;
    if(obj.value==txt)
    obj.value='';
    }
    function verificaS(obj,txt){
    f = document.mform;
    if (obj.value=='')
    obj.value = txt;
    }
