function depurar() {
		if (document.form2.email.value.length<1)  {
			alert("Introduzca el identificador ó email");
			document.form2.email.focus();
			return false;
		}
		if (document.form2.password.value.length<1)  {
			alert("Introduzca la password");
			document.form2.password.focus();
			return false;
		}
		if (confirm("¿Desea guardar su identificador y password en una cookie?") == true )
		{
			document.form2.galleta.value=1;
		}
		return true;
	}

function depurar2() {
		if (document.form2.email.value.length<1)  {
			alert("Introduzca el identificador ó email");
			document.form2.email.focus();
			return false;
		}
		if (document.form2.password.value.length<1)  {
			alert("Introduzca la password");
			document.form2.password.focus();
			return false;
		}
		return true;
	}