//STAMPA TUTTO function printDivGrafico(PRINTAREA) { var DocumentContainer = document.getElementById(PRINTAREA); var WindowObject = window.open('', 'PrintWindow', 'width=900,height=500,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes'); WindowObject.document.writeln(''); WindowObject.document.writeln(''); WindowObject.document.writeln(''); WindowObject.document.writeln('') WindowObject.document.writeln(DocumentContainer.innerHTML); WindowObject.document.writeln(''); WindowObject.document.close(); WindowObject.focus(); WindowObject.print(); WindowObject.close(); } function printDivVista(PRINTAREA){ var DocumentContainer = document.getElementById(PRINTAREA); var WindowObject = window.open('', 'PrintWindow', 'width=750,height=650,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes'); WindowObject.document.writeln(''); WindowObject.document.writeln(''); WindowObject.document.writeln(''); WindowObject.document.writeln('') WindowObject.document.writeln(DocumentContainer.innerHTML); WindowObject.document.writeln(''); WindowObject.document.close(); WindowObject.focus(); WindowObject.print(); WindowObject.close(); }