// JavaScript Document

function ilumina_text_over(){
	document.getElementById('text_normal').style.color="#565a5f";
}


function ilumina_text_out(){
	document.getElementById('text_normal').style.color="#837d79";
}


function camps_obligatoris_alta_gremi(){
	var error="OK";
	
	if(document.getElementById("empresa").value==""){
		error="KO";
	}

	if(document.getElementById("titular").value==""){
		error="KO";
	}

	if(document.getElementById("adreca").value==""){
		error="KO";
	}

	if(document.getElementById("ciutat").value==""){
		error="KO";
	}

	if(document.getElementById("cpostal").value==""){
		error="KO";
	}

	if(document.getElementById("tel").value==""){
		error="KO";
	}

	if(document.getElementById("email").value!=""){
	  	 var email = document.getElementById("email").value
		  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email)){
		  } else {
				error="KO";
		  }
	}

	if(document.getElementById("cbancari").value==""){
		error="KO";
	}

	if(error=="KO"){
		alert("Revisi tots els camps i el format de l'email.");
	}
	if(error=="OK"){
		document.forms['alta_gremi'].submit();
	}
     
}

function camps_obligatoris_borsa_treball(){
	var error="OK";
	
	if(document.getElementById("nom").value==""){
		error="KO";
	}

	if(document.getElementById("cognoms").value==""){
		error="KO";
	}

	if(document.getElementById("edat").value==""){
		error="KO";
	}

	if(document.getElementById("adreca").value==""){
		error="KO";
	}

	if(document.getElementById("poblacio").value==""){
		error="KO";
	}

	if(document.getElementById("provincia").value==""){
		error="KO";
	}

	if(document.getElementById("tel").value==""){
		error="KO";
	}

	if(document.getElementById("email").value!=""){
	  	 var email = document.getElementById("email").value
		  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email)){
		  } else {
				error="KO";
		  }
	}

	if(error=="KO"){
		alert("Revisi tots els camps i el format de l'email.");
	}
	if(error=="OK"){
		document.forms['oferta_contacte'].submit();
	}
     
}