/**
 * This file contains the code to open a print dialog box, whenever the user clicks on the Print link.
 */
$(document).ready(function() {
    // If the user clicks on the print link, then open the print dialog box.
    $('#printPage').click(function() {
        window.print();
        return false;
    });
});

