function printPage() { // only if NOT outside referrer
if ( window.document.referrer.indexOf('offshore-fox.com')>=0 ) {
window.setTimeout('reallyPrint();',100);
}
}
// Netscape fix; Netscape display the print dialogue before the page
// that's being printed -- so let's have a 0.1 sec delay.
function reallyPrint() {
window.print();
}
