// JavaScript Document
/*
	SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
	http://www.editeurjavascript.com
	Ne copiez ce code qu'une fois dans votre page
	*/
	function afficheVignette(cheminVignette,cheminMaxi)
		{
		document.write('<a href="javascript:afficheMaxi(\''+cheminMaxi+'\')" onfocus="this.blur()"><img src="'+cheminVignette+'" border=0 alt="clicca qui per ingrandire la foto"></a>');
		}
	function afficheMaxi(chemin)
		{
		i1 = new Image;
		i1.src = chemin;
		html = '<html><head><title>Ristorante Al Calmiere</title></head><body style="margin:0 0 20px 0;text-align:center;padding-bottom:10px"><img src="'+chemin+'" border=0 name=imageTest onload="window.resizeTo(document.imageTest.width+25,document.imageTest.height+85)" onclick="javascript:window.close()" title="Clicca sulla foto per chiudere la finestra"></body></html>';
		popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
		popupImage.document.open();
		popupImage.document.write(html);
		popupImage.document.close()
		};