function print_page() {
    //For "print" button on printer friendly page. Win IE and NS6
    //compatible. MacIE not supported so they get the alert()
    if(self.print)
    {
        self.print();
    }
    else
    {
        alert('Sorry but your browser does not support this printing button. To print, select the print option from your browser\'s toolbar or pulldown menus.');
    }
}
