

function printContent(id){
   str=document.getElementById(id).innerHTML
   newwin=window.open('','printwin','left=100,top=100,scrollbars=yes,width=600,height=850')
   newwin.document.open();
   newwin.document.write('<html><head><title>Centro studi Ariosto</title><link rel="stylesheet" type="text/css" href="styles/default.css" /><link rel="stylesheet" type="text/css" href="styles/print.css" /></head>\n');
   newwin.document.write('<BODY>\n')
   newwin.document.write(str)
   //newwin.document.write('<hr />');
   /*newwin.document.write('<a href="#" onClick="window.print();">Print</a>')*/
   //newwin.document.write('<a href="javascript:window.close();">Close Window</a>')
   newwin.document.write('</body></html>');
   newwin.document.close();
   newwin.print();
}

