function Borrar(valor)
{
	if(document.getElementById("texto").value==valor)
	{
		document.getElementById("texto").value="";
	  return false
	}

}
			
function Escribir(valor)
{
	if(document.getElementById("texto").value=="")
	{
		document.getElementById("texto").value=valor;
	  return false
	}

}
