function focoIn(id, texto){
	var destino = document.getElementById(id);
	if(destino.value == texto){
		destino.value = "";
	}
}

function focoOut(id, texto){
	var destino = document.getElementById(id);
	if(destino.value == ""){
		destino.value = texto;
	}
}