// LIMPA CAMPO

function limpaCampo(campo){
	var txtfieldName = document.getElementById(campo);
	return txtfieldName.value = "";
}

function retornaTexto(campo, texto){
var txtfieldName = document.getElementById(campo);
if(txtfieldName.value == ''){
txtfieldName.value=texto;
}
}


// FIM
