// JavaScript Document
function stampa() {
var testo = "<html><head><title>"+"Le Monde Diplomatique il manifesto</title></head>";
testo += "<left>"; 
testo += document.getElementById('colonnacentrale').innerHTML;
var ident_finestra = window.open("","finestra_stampa","height=600,width=400");
ident_finestra.document.open();
ident_finestra.document.write(testo);
ident_finestra.print();
ident_finestra.document.close();
}