//autovaciar campos de formulario
function input_focus(campo,texto){
	if(campo.value==texto){campo.value='';}
}
function input_blur(campo,texto){
	if(campo.value==''){campo.value=texto;}
}

function textArea_blur(TxtArea,TxtInicial) 
{  
    if(TxtArea.value == "") 
    { 
        TxtArea.value = TxtInicial; 
    }
} 

function textArea_focus(TxtArea,TxtInicial) 
{ 
    if(TxtArea.value == TxtInicial) 
    { 
        TxtArea.value=""; 
    } 
}