/*** COMPROVA CAMPS OBLIGATORIS ***/
//Castellano
function ComprovaCamps_es() {
	if (document.form1.nom.value == "") {
		alert('Debe introducir el nombre de la persona de contacto');
		return false;
	}
	if (document.form1.email.value == "") {
		alert('Debe introducir un e-mail de contacto');
		return false;
	}

	return true;
}

//Català
function ComprovaCamps_ca() {

	if (document.form1.nom.value == "") {
		alert('Ha d\'introduïr el nom de la persona de contacte');
		return false;
	}

	if (document.form1.email.value == "") {
		alert('Ha d\'introduïr un e-mail de contacte');
		return false;
	}

	return true;
}

