
var click_count = -1; // Used with history.go() to determine how far to go back

function previousPage()
{
 var html = '<img src="/public/graphics/left_arrow.gif" width="16" height="15" border="0" align="absmiddle" alt="up arrow">&nbsp; <a href="javascript:history.go(click_count)" onmouseover="window.status=\'Previous Page\';return true" onmouseout="window.status=\'\';return true">Previous Page</a>';
 self.document.write('<span class="noprint">',html,'</span>');
}

function printPage()
{
 var html = '<img src="/public/graphics/printer.gif" width="19" height="15" border="0" align="absmiddle" alt="printer">&nbsp; <a href="javascript:self.print()" onmouseover="window.status=\'Print Page\';return true" onmouseout="window.status=\'\';return true">Print This Page</a>';
 self.document.write('<span class="noprint">',html,'</span>');
}
