/* ------------------------------------------------------
 Surrey County Council - Master JavaScript functions

 last modified: 21/11/2008 by Matthew Evans
 website:       http://www.surreycc.gov.uk/
--------------------------------------------------------- */

/* 	Print page
--------------------------------------------------------- */
function printPage() {
    if (window.print) {
        window.print();
    } 
    else {
        alert("Sorry, your browser doesn't support this feature.\n" +
                "Please use your browser's print button");
    }
}