


function check_FormPrestecInterbibliotecari(){

	var msg;
	var doc;

	doc = document.getElementById("nom");
	if(doc.value.length == 0){
		alert("El camp \"Nom i cognoms\" és obligatori");
		doc.focus();
		return false;
	}
	doc = document.getElementById("email");
	if(doc.value.length == 0){
		alert("El camp \"Correu electrònic\" és obligatori");
		doc.focus();
		return false;
	}
	var regEx = /^(\w[-._\w]*\w@\w[-._\w]*\w\.\w{2,4})$/;
	if(!regEx.test(doc.value)){
		alert("El camp \"Correu electrònic\" no té el format correcte");
		doc.focus();
		return false;
	}
	doc = document.getElementById("titol_llibre");
	if(doc.value.length == 0){
		alert("El camp \"Títol del llibre\" és obligatori");
		doc.focus();
		return false;
	}
	doc = document.getElementById("autor");
	if(doc.value.length == 0){
		alert("El camp \"Autor\" és obligatori");
		doc.focus();
		return false;
	}
	var checked = 0;
	doc = document.getElementsByName("biblioteques");
	for(var i=0;i<doc.length && checked==0;i++){
		if(doc[i].checked) checked++;
	}
	if(checked == 0){
		alert("El camp \"Biblioteques on voleu que demanem l\'obra\" és obligatori");
		doc[0].focus();
		return false;
	}
	return true;
}
