function canvia_menu(num){
	document.getElementById('quefem01').style.display = 'none';
	document.getElementById('quefem02').style.display = 'none';
	document.getElementById('quefem03').style.display = 'none';
	
	document.getElementById('quefem'+num).style.display = 'block';
}

function enviar_email(a,b){
	location.href="mailto:"+a+"@"+b;
}	

function enviar_contactar(){
	f=document.formcontactar;
	if(f.f_nom.value.length==0) alert("Introdueixi el seu nom");
	else if(f.f_cognoms.value.length==0) alert("Introdueixi els seus cognoms");
	else if(f.f_telefon.value.length<9) alert("Introdueixi el telèfon de contacte");
	else if(f.f_email.value.length==0) alert("Introdueixi el seu email");
	else if(!isValidEmail(f.f_email.value)) alert("L'email introduit no és correcte");
	else if(f.f_comentaris.value.length==0) alert("Introdueixi els seus comentaris");
	else {
		f.submit();
	}
}


function enviar_contactar_es(){
	f=document.formcontactar;
	if(f.f_nom.value.length==0) alert("Introduzca su nombre");
	else if(f.f_cognoms.value.length==0) alert("Introduzca sus apellidos");
	else if(f.f_telefon.value.length<9) alert("Introduzca el telefono de contacto");
	else if(f.f_email.value.length==0) alert("Introduzca su email");
	else if(!isValidEmail(f.f_email.value)) alert("El email introducido no es correcto");
	else if(f.f_comentaris.value.length==0) alert("Introduzca sus comentarios");
	else {
		f.submit();
	}
}

function isValidEmail(str) {
   return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
 
}

function avis_legal(){
	window.open('avis_legal.htm', 'simanlegal' ,'width=400 ,height= 240');
}
function acces_remot(){
	window.open('acces_remot.htm', 'simanlegal' ,'width=400 ,height= 240');
}