function clearText(thefield){
    if (thefield.defaultValue==thefield.value)
        thefield.value = "";
}

function reverseText(thefield, valor){
    if(thefield.value=="")
        thefield.value = valor;
}