// JavaScript Document

	function borrarTXT(id_campo,texto){
		if(document.getElementById(id_campo).value == texto){
			document.getElementById(id_campo).value="";
		}
	}

	function ponerTXT(id_campo,texto){
		if(document.getElementById(id_campo).value == ''){
			document.getElementById(id_campo).value=texto;
		}
	}
