puntson=new Image();
puntson.src='/img/punton.jpg';
puntsoff=new Image();
puntsoff.src='/img/puntoff.jpg';

menuon=new Image();
menuon.src='/img/menuon.jpg';
menuoff=new Image();
menuoff.src='/img/menuoff.jpg';

var message="CAVISA"; 
function click(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(message);
			return false;
		}
	}
	
	if(e){
		if (e.which == 3 || e.which == 2) {
			alert(message);
			return false;
		}
	}
}

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;


function comprovarForm(dades,frase,frase2){	
	camps=dades.split(",");
	
	for(i=0;i<camps.length;i++){
		if(camps[i]=='email'){
			if ((document.getElementById('email').value =="") || !(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.getElementById('email').value))){
      			alert(frase2);
      			return (false);
    		}
		}else{
			if (document.getElementById(camps[i]).value ==""){
      			alert(frase);
      			return (false);
    		}
		}
	}
	
	return (true);
}