function operazioni(ope, est, tipo) {
	var contenuto = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"it\" lang=\"it\"><head><title>"+document.title+"</title>"+
				"<link rel=\"stylesheet\" type=\"text/css\" href=\"css/main.css\" /><link rel=\"stylesheet\" type=\"text/css\" href=\"css/text.css\" />"+
				"</head><body><div id=\"container2\"><div class=\"centro\" id=\"contenuto\"><strong>"+document.title+"</strong><br />";
	contenuto += document.getElementById('livello').innerHTML+"</div></div></body></html>";	
	var ident_finestra = window.open("", "finestra_operazioni", "height=550,width=550, toolbar=0, location=0, directories=0, menuBar=1, scrollbars=1, resizable=0, top=1, left=1"); 	
	ident_finestra.document.write(contenuto);		
	ident_finestra.document.execCommand(ope, false, "stampa"+est);
	ident_finestra.close(); 
}
