function ajustaTextoFocus(campo, texto) {
	if(campo.value == texto)
		campo.value = "";
}
function ajustaTextoBlur(campo, texto) {
	if(campo.value == "")
		campo.value = texto;
}
