function protect(e) {
	if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)){
		return false;
	} else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
		alert("E.L.C.A. Srl - Elettromeccanica Costruzione Automatismi - Brescia - Italy");
		return false;
	}
	return true;
}
function trap() {
	if(document.images)
		for(i=0;i<document.images.length;i++)
			document.images[i].onmousedown = protect;
}
