function BigImage(nome,larga,alta,testo,lungtesto)
{
if (parseInt(navigator.appVersion) >2 )

	{
	//alta-=30;
	finestra=open('','','width='+larga+',height='+alta+',status=no,menubar=no,resizable=yes,scrollbars=yes');
	with(finestra.document)
		{
		open();
		write("<HTML><HEAD>");
		write("<style type='text/css'><!-- .style1 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;} --></style>");
		write("</HEAD><BODY leftmargin='5px' topmargin='5px' marginwidth='1px' marginheight='1px' >");
		write("<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='2px'>");
		write("<TR><TD ALIGN=center VALIGN=top><IMG BORDER=0 SRC="+nome+"></TD></TR>");
		write("<TR><TD ALIGN=center VALIGN=top><span class='style1'>"+testo+"</span><a href=\"javascript:print();\"><img border='0' src='images/stampa.jpg' alt='stampa il documento' align='right'></a></TD></TR>");
	
		write("</TABLE></BODY></HTML>");
		
		close();
		
		}
		
		
	}
}

function stampa_popup(testo1,intesto)
{
var intesto = "Carla Fabi & Barbara Ghinfanti - Ufficio Stampa"
var testo1 = "<html><head><title>"+document.title+"</title><style type='text/css'><!-- h1 {font-family: Verdana, 12px;} --></style></head>";
testo1 += "<body><center><a href=\"javascript:print();\"></a><br><br>";
testo1 += "<table width=\"100%\" border=\"0\"><tr><td ALIGN=justify>";
testo1 += document.getElementById('docum').innerHTML+"</td></tr></table>";
testo1 += "</body></html>";
var ident_finestra = window.open("","finestra_stampa","height=400,width=600,left=5000");
ident_finestra.document.open();
ident_finestra.document.write(intesto);
ident_finestra.document.write(testo1);
ident_finestra.document.close();
ident_finestra.print();
ident_finestra.close(); 

}

