function afficheVignette(cheminVignette,cheminMaxi)
	{
	document.write('<A HREF="javascript:afficheMaxi(\''+cheminMaxi+'\')"><IMG SRC="'+cheminVignette+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Clicca qui per ingrandire la foto" border="0"></A>');
	}
	
function testo(testo)
	{document.write('<A HREF="javascript:testo(\''+testo+'\')">testo</A>');}	
		
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\<HEAD>\<TITLE>MD TEATRO</TITLE>\<link rel="stylesheet" type="text/css" href="../css/pagina.css">\</HEAD>\<BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\<IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+35,document.imageTest.height+50)" align="left" border="0">\</BODY>\</HTML>';


	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=yes,resizable=yes');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	