if (document.images) {
home_on = new Image();
home_on.src = "img/home_on.gif";
home_off = new Image();
home_off.src = "img/home_off.gif";
chi_siamo_on = new Image();
chi_siamo_on.src = "img/chi_siamo_on.gif";
chi_siamo_off = new Image();
chi_siamo_off.src = "img/chi_siamo_off.gif";
scarti_on = new Image();
scarti_on.src = "img/scarti_on.gif";
scarti_off = new Image();
scarti_off.src = "img/scarti_off.gif";
oli_esausti_on = new Image();
oli_esausti_on.src = "img/oli_esausti_on.gif";
oli_esausti_off = new Image();
oli_esausti_off.src = "img/oli_esausti_off.gif";
}
function changeImage(imgNam, newImg) {
	if (document.images)
		document[imgNam].src = newImg;
}
function rollOver(name, status) {
    changeImage(name, eval(name + '_' + status + '.src'));
}


function targetBlank (url) {
  blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}