// apri finestra pop-up centrale per vedere l'immagine dell'annuncio grande (3 funzioni)
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' onClick='self.close();'></body></html>");
	windowImg.moveTo(((screen.width/2)-(foto1.width/2)),((screen.height/2)-(foto1.height/2)));
	windowImg.focus();
}// ImgFull (3 funzioni)