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/menu.css\"  /><link rel=\"stylesheet\" type=\"text/css\" href=\"css/textm.css\"  /><link rel=\"stylesheet\ type=\"text/css\" href=\"css/colori.css\"  /></head><body><div align=\"left\"><img src=\"images/lbs_001.jpg\" alt=\"\"></div><br><div align=\"left\"> ";
	contenuto += document.getElementById('livello').innerHTML+"</div></body></html>";
	
	var ident_finestra = window.open("", "finestra_operazioni", "height=600,width=800, 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);
	
	if(tipo == 0) {
		ident_finestra.close(); 
	}else {
		ident_finestra.document.execCommand('Copy', false, 'stampa'+est);
		setTimeout('ident_finestra.close();', 10000);
	}
}