function printWindow(divId) {
    newwindow = window.open('', 'newwin', 'height=600,width=650,scrollbars=yes');
    newwindow.document.write('<head><link rel=stylesheet href="../css/mj_win.css" type="text/css"></head><bo' + 'dy onLoad="window.focus(); window.print()">' + document.getElementById(divId).innerHTML + '</body>');
    newwindow.document.close();
}
