function compro(){
	
		if (document.getElementById('nombre').value==''){
		alert('Debe rellenar correctamente los datos');
		document.getElementById('nombre').focus();	
		return false;
		}

	if (document.getElementById('apellidos').value==''){
		alert('Debe rellenar correctamente los datos');
		document.getElementById('apellidos').focus();	
		return false;
		}

	if (document.getElementById('telefono').value==''){
		alert('Debe rellenar correctamente los datos');
		document.getElementById('telefono').focus();	
		return false;
		}
			
if (document.getElementById('email').value==""){
		alert("Debe rellenar correctamente los datos");
	document.getElementById('email').focus();
	return false;
	}else{

	var email = document.getElementById('email').value;
	var pos = email.indexOf("@");	
	var punto = email.indexOf(".");

	
	if (pos<=1){
		alert("Debe rellenar correctamente los datos");
	document.getElementById('email').focus();
	return false;
	
	}
	
	if (punto<1){
		alert("Debe rellenar correctamente los datos");
	document.getElementById('email').focus();
	return false;
	
	}
	
	
	}
	
	if (document.getElementById('captchacode').value=='')
{
		alert("Debe escribir lo que ve en la imagen");
	document.getElementById('captchacode').focus();
	return false;
}
	
	document.getElementById('formulari').submit();
		

	}
	
function CheckNumeric(obj)
{
   // Get ASCII value of key that user pressed
   var key = window.event.keyCode;

   // dejar introducir números 0..9 o barra /
   if ( key > 47 && key < 58 )
      return;
   else
	  window.event.returnValue = null;
}

function izq_frm(){

	if (document.getElementById('dia_entrada2').value==''){
		alert('Debe rellenar correctamente los datos');
		document.getElementById('dia_entrada2').focus();	
		return false;
		}		
	if (document.getElementById('mes_entrada2').value==''){
		alert('Debe rellenar correctamente los datos');
		document.getElementById('mes_entrada2').focus();	
		return false;
		}		
	if (document.getElementById('ano_entrada2').value==''){
		alert('Debe rellenar correctamente los datos');
		document.getElementById('ano_entrada2').focus();	
		return false;
		}
		
		
		
	
		
		ano_entrada=parseInt(document.getElementById('ano_entrada2').value);
		mes_entrada=parseInt(document.getElementById('mes_entrada2').value);
		dia_entrada=parseInt(document.getElementById('dia_entrada2').value);		
		
		ano=document.getElementById('ano_entrada2').value;
		mes=document.getElementById('mes_entrada2').value;
		dia=document.getElementById('dia_entrada2').value;
		
		var continuar="si";

		
		
		var fecha=new Date();

		var dia_hoy=parseInt(fecha.getDate());
		var mes_hoy=parseInt(fecha.getMonth()+1);
		var ano_hoy=parseInt(fecha.getFullYear());
		

		
		if (dia_entrada<dia_hoy){

			if (mes_entrada<=mes_hoy){
		
				if (ano_entrada<=ano_hoy){
				continuar="no";
								
				}
			}

		}
			
		if (dia_entrada>=dia_hoy){

			if (mes_entrada<mes_hoy){
			
				if (ano_entrada<=ano_hoy){
				continuar="no";

				}
			}

		}

			

			if (continuar=="no"){
		
		  alert("Esta fecha ya ha pasado");
		  return false;



		  }
		
		document.location.href="reservas.asp?dma=CAL"+dia+mes+ano+"&amp;noches="+document.getElementById('noches2').value+"&amp;ano="+ano+"&amp;mes="+mes+"&amp;dia="+dia;
	
	}