function PrintPage() {
    if (window.print) {
        if (confirm("Print this page?")) {
            window.print();
        }
    }
}

