function Finestra(nome,testo,larghezza,altezza)
{
var larghezza_fin=larghezza+25;
if (larghezza_fin<270)
{
	larghezza_fin=270;
}
var altezza_fin=altezza+80;
if (altezza_fin>550)
{
	altezza_fin=550;
}

var larghezza_tab=larghezza_fin-18;
	finestra=window.open('','foto','width='+larghezza_fin+',height='+altezza_fin+',status=no,menubar=no,resizable=no,scrollbars=yes, location=no, top=0,left=0');
	with(finestra.document)
		{
		open();
		writeln("<HTML><HEAD><link rel='stylesheet' href='/cms/css/default.css' type='text/css'><SCRIPT>function Chiudi(){this.close();}</SCRIPT>");
		writeln("<title>Foto Gallery</title></HEAD><BODY onblur=\"Chiudi()\" marginleft='0' margintop='0' marginwidth='0' marginheight='0' leftmargin='0' topmargin='0'>");
		writeln("<CENTER><table border='0' cellpadding='5' cellspacing='2' width='"+larghezza_tab+"'><tr><td align='center' valign='middle'>");
		writeln("<IMG border='0' NAME=image SRC=\""+nome+"\" alt=\"[Foto Gallery] - "+testo+"\" title=\"[Foto Gallery] - "+testo+"\" width='"+larghezza+"' height='"+altezza+"'></td></tr><tr><td align=center valign=bottom class=medio>");
		writeln(testo);
		writeln("</td></tr><tr><td align='right' class='piccolo'><A HREF='javascript:Chiudi()' onFocus='this.blur()';>Chiudi</A>&nbsp;&nbsp;&nbsp;</td></tr></table></center></BODY></HTML>");
		close();
		}
	finestra.focus();
}
