var win=null;
function print(printThis)
{
win = window.open("", "PrintWindow","width=740,height=600,left=10,top=10,scrollbars=yes,resizable=yes");
self.focus();
win.document.open();
win.document.write("<html><head>");
win.document.write("<link href='../style.css' rel='stylesheet' type='text/css'>");
win.document.write("<link href='./layout.css' rel='stylesheet' type='text/css'>");
win.document.write("<link href='./board.skin.css' rel='stylesheet' type='text/css'>");
win.document.write("</head><body>");
win.document.write(printThis);
win.document.write("</body></html>");
win.document.close(); win.print(); win.close();
}

