// JavaScript Document

<!--
function validateEs(){ 
// name validation
	if(document.getElementById('nombre').value==""){ 
		alert("Hay que entrar un nombre"); 
		document.getElementById('nombre').focus(); 
	return; 
	} 

// direccion validation
	if(document.getElementById('direccion').value==""){ 
		alert("Hay que entrar su dirección"); 
		document.getElementById('direccion').focus(); 
	return; 
	} 
		
// poblacion validation
	if(document.getElementById('poblacion').value==""){ 
		alert("Hay que entrar su poblacion"); 
		document.getElementById('poblacion').focus(); 
	return; 
	} 
		
// codigoPostal validation
	if(document.getElementById('codigoPostal').value==""){ 
		alert("Hay que entrar su codigo postal"); 
		document.getElementById('codigoPostal').focus(); 
	return; 
	} 
		
// telefono validation
	if(document.getElementById('telefono').value==""){ 
		alert("Hay que entrar su numero de telefono"); 
		document.getElementById('telefono').focus(); 
	return; 
	} 

// pedirTurno validation
	if(document.getElementById('pedirTurno').value==""){ 
		alert("Hay que entrar un turno preferido"); 
		document.getElementById('pedirTurno').focus(); 
	return; 
	} 


// if all is valid, submit the form
//	document.contact.submit(); 
	window.document.forms['contactForm'].submit();	
}


function validateEn(){ 
// name validation
	if(document.getElementById('nombre').value==""){ 
		alert("Please enter your name"); 
		document.getElementById('nombre').focus(); 
	return; 
	} 

// direccion validation
	if(document.getElementById('direccion').value==""){ 
		alert("Please enter your address"); 
		document.getElementById('direccion').focus(); 
	return; 
	} 
		
// poblacion validation
	if(document.getElementById('poblacion').value==""){ 
		alert("Please enter your city"); 
		document.getElementById('poblacion').focus(); 
	return; 
	} 
		
// codigoPostal validation
	if(document.getElementById('codigoPostal').value==""){ 
		alert("Please enter your post code"); 
		document.getElementById('codigoPostal').focus(); 
	return; 
	} 
		
// telefono validation
	if(document.getElementById('telefono').value==""){ 
		alert("Please enter your telephone number"); 
		document.getElementById('telefono').focus(); 
	return; 
	} 

// pedirTurno validation
	if(document.getElementById('pedirTurno').value==""){ 
		alert("Please choose a preferred appointment time"); 
		document.getElementById('pedirTurno').focus(); 
	return; 
	} 


// if all is valid, submit the form
//	document.contact.submit(); 
	window.document.forms['contactForm'].submit();	
}


function validateCa(){ 
// name validation
	if(document.getElementById('nombre').value==""){ 
		alert("Cal entrar el seu nom"); 
		document.getElementById('nombre').focus(); 
	return; 
	} 

// direccion validation
	if(document.getElementById('direccion').value==""){ 
		alert("Cal entrar el seu dirrecciò"); 
		document.getElementById('direccion').focus(); 
	return; 
	} 
		
// poblacion validation
	if(document.getElementById('poblacion').value==""){ 
		alert("Cal entrar el seu poblaciò"); 
		document.getElementById('poblacion').focus(); 
	return; 
	} 
		
// codigoPostal validation
	if(document.getElementById('codigoPostal').value==""){ 
		alert("Cal entrar el seu codi postal"); 
		document.getElementById('codigoPostal').focus(); 
	return; 
	} 
		
// telefono validation
	if(document.getElementById('telefono').value==""){ 
		alert("Cal entrar el seu numero de telefon"); 
		document.getElementById('telefono').focus(); 
	return; 
	} 

// pedirTurno validation
	if(document.getElementById('pedirTurno').value==""){ 
		alert("Cal entrar el seu turn preferit"); 
		document.getElementById('pedirTurno').focus(); 
	return; 
	} 


// if all is valid, submit the form
//	document.contact.submit(); 
	window.document.forms['contactForm'].submit();	
}

//-->