var img1 = new Image();
img1.src = 'home3.jpg';
var img2 = new Image();
img2.src = 'prodotti3.jpg';
var img3 = new Image();
img3.src = 'chisono3.jpg';
var img4 = new Image();
img4.src = 'contatti3.jpg';
var img5 = new Image();
img5.src = 'prodottihome3.jpg';
var img6 = new Image();
img6.src = 'chisonohome3.jpg';
var img7 = new Image();
img7.src = 'contattihome3.jpg';

function cambioimmagine(ImageName,ImageFile){ 
ImageName.src = ImageFile; 
} 

function cambiafoto(nomefoto) {
	document.fotogrande.src = nomefoto;											
}

function cambianome(nome) {
	document.getElementById("nome").innerHTML=nome
}

function PrevFoto(img){
  foto1=new Image();
  foto1.onload=function(){
	stringa="width="+(this.width+20)+",height="+(this.height+25);
    finestra=window.open(this.src,"",stringa);
    foto1.onload=null;
  }
  foto1.src=img;
}