Начало
Детали страницы
Окно печати
Быстро и легко распечатать текущую страницу, нажав на ссылки.
Print This Page
JavaScript Page Details:Окно печати
<!-- TWO STEPS TO INSTALL WINDOW PRINT: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function printWindow() { bV = parseInt(navigator.appVersion); if (bV >= 4) window.print(); } // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <a href="javascript:printWindow()">Print This Page</a> <!-- Script Size: 0.91 KB -->