function printContent(myWin) {
    var target = myWin.document.getElementById('content');
    var theWin = window.open('', 'print','width=675,height=330,scrollbars,status');
    the_doc = theWin.document;
    the_doc.open();
    the_doc.writeln('<html><head></head>');
    the_doc.writeln('<link rel="Stylesheet" type="text/css" href="/_lib.css/global.css"><body>');   
    the_doc.writeln('<body style="background-image: url(/_common.images/print_header.gif); background-repeat: repeat-x; padding:10px; padding-top:25px">');
//	the_doc.writeln('<p>&nbsp;</p>');
	the_doc.writeln(target.innerHTML);
    the_doc.writeln('</body></html>');
    the_doc.close();
    theWin.print();
}
