you could throw a dialog box to remind them to print the page.
function printPage() {
if (window.print) {
agree = confirm('This page contains really cool information that \nwe recommend you print a copy of at this time. \n\nOK to print now?');
if (agree) window.print();
}
}
you could then put a link to a printer friendly version of the page and onload execute the printPage() function.
|