function PrintPanel() { var panel = document.getElementById("csg_print"); var printWindow = window.open('', '', 'height=400,width=800'); printWindow.document.write('Course Selection Guide'); printWindow.document.write('

911ÖÆÆ·³§

'); printWindow.document.write(panel.innerHTML); printWindow.document.write(''); printWindow.document.close(); setTimeout(function () { printWindow.print(); }, 500); return false; }