function fin(nomefile,w,h) {
	posx=(screen.width-w)/2;
	posy=(screen.height-h)/2;
	finestra=window.open('../../../../immagini/prodotti/popup/'+nomefile+'.htm',nomefile,'width=' + w + ', height=' + h);
	finestra.window.moveTo(posx,posy);
	finestra.window.focus();
}
function rollover(oggetto,stato,livello){
	percorso="";
	quale="";
	for(i=0; i<livello; i++){
		percorso=percorso+"../";
	}
	if(stato==1){
		quale="h";
	}
	document[oggetto].src=percorso+"immagini/menu/"+oggetto+quale+".png";
}
function popup(img,w,h){
	posx=(screen.width-w)/2;
	posy=(screen.height-h)/2;
	finestra=window.open('../popup.php?img='+img+'&w='+w+'&h='+h,'popup','width=' +w+', height='+h);
	finestra.window.moveTo(posx,posy);
	finestra.window.focus();
}