var win=null;
function printIt(printThis)
{
    win = window.open();
    self.focus();
    win.document.open();
    win.document.write('<html><head>');
    win.document.write('<link rel="stylesheet" type="text/css" href="stylesheets/main_style.css">');
    win.document.write('</head><body style="background: white; width: 600px">');
    win.document.write(printThis);
    win.document.write('</body></html>');
    win.document.close();
    win.print();
    win.close();
}
