


function check_FormReservaLlibresDocuments(){

	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("autor");
	if(doc.value.length == 0){
		alert("El camp \"Autor\" és obligatori");
		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;
	}
	return true;
}
