function intro(campo,evento){
	var tecla,codtecla;
	if(window.event)
		tecla=window.event.keyCode;
	else if (event)
		tecla=event.which;
	else
		return true;
	if(tecla==13)
		return false;
	return true;
}
function compruebacookies(){
	document.cookie="micookie=prueba";
	var ck=true;
	if(!document.cookie){
		ck=false;
		var mensaje="Tu navegador no admite cookies. Para registrarte necesitarás activarlas.";
		mensaje+="\nSi usas el explorer, puedes hacerlo pinchando en la parte superior de la ventana del navegador, donde pone: 'Herramientas'.\n";
		mensaje+="Luego pinchas en 'Opciones de internet..' y luego en la pestaña 'Privacidad'.\n";
		mensaje+="Aquí verás un cursorcillo, debajo de 'configuración' : ponla en media-alta,....y voilá!!!\n";
		alert (mensaje);		
	}	
	return ck;
}
function campovacio(campo){
	valor=campo.value;
	if((valor==null)||(valor.length==0))
		return true;
	blancos="\t \n \r";
	for(i=0;i<valor.length;i++){
		caracter=valor.charAt(i);
		if(blancos.indexOf(caracter)==-1){
			return false;
		}
	}
	return true;
}
function valida_mensaje(formulario){
	if(campovacio(formulario.elements["titulo"])){
		alert("Escribe algún título para el mensaje");
		formulario.elements["titulo"].focus();
		return false;
	}
	if(campovacio(formulario.elements["mensaje"])){
		alert("Escribe un texto para el mensaje");
		formulario.elements["mensaje"].focus();
		return false;
	}		
	return true;
}