// apri finestra pop-up accessori
function ImgFull(img) {
	foto1= new Image();
	foto1.src=(img);
	Controlla(img);
} function Controlla(img) {
	if((foto1.width!=0)&&(foto1.height!=0)){
		viewFoto(img);
	}else{
		funzione="Controlla('"+img+"')";
		intervallo=setTimeout(funzione,20);
	}
} function viewFoto(img) {
	stringa="width="+foto1.width+",height="+foto1.height;
	windowImg=window.open(img,"",stringa);
	windowImg.document.write("<html><title>Immagine Ingrandita</title><body leftMargin='0' rightMargin='0' topMargin='0' bottomMargin='0'><img src='"+img+"' alt='clicca per chiudere' border='0' style='cursor:hand' onMouseDown='self.close();'></body></html>");
	windowImg.moveTo(((screen.width/2)-(foto1.width/2)),((screen.height/2)-(foto1.height/2)));
	windowImg.focus();
}
window.status="Plurimix BOSCH  - Macchina universale da cucina";
var message="Copyright "+year+" Plurimix BOSCH"; 
function click(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(message);
			return false;
		}
	}
	if (document.layers) { 
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;