function go()
{
var a = window. open('','','scrollbars=yes,width=600,height=400');

a.document.open("text/html");
a.document.write('<html><head><link rel="stylesheet" href="style/style.css" /><style type="text/css">#main{background-image:none;background-color:#FFFFFF;}.left_side{display:none;}</style></head><body style="background-image:none;padding:10px;background-color:#FFFFFF;">');
a.document.write(document.getElementById('main').innerHTML);
a.document.write('</body></html>');
a.document.close();
a.print();
}
