//JavaScript File for virtual overview1
//Update this function to change the overview on site pages
//
    function printVirtualOverview1(){
    document.write('<hr>');
    document.write('<OL>');
    document.write('<LI><A HREF="#define">    Definition</A>     ');
    document.write('<LI><A HREF="#install">   Installation</A>   ');
    document.write('<LI><A href="#ops">       Operation</A>      ');
    document.write('<LI><A href="#trouble">   Troubleshooting</A>');
    document.write('<LI><A HREF="#reference"> References</A>  ');
    document.write('</OL>');
    document.write('<hr>');
    }
    
//JavaScript File for virtual footer1
//Update this function to change the footer on site pages
//
    function printVirtualFooter1(){
    document.write('<HR>');
    document.write('<CENTER><font size = -2>&copy;2007 <i>MAURA ENRIGHT</font></i></CENTER>');
    }
    
 function printModifiedDate(){
 	document.write('<TABLE width=100%>');
  	document.write('<TR>');
	document.write('<TD align=center><font size = -2>' + 'revised ' + document.lastModified + '</font>');
	document.write('</td>');
	document.write('</TR>');
	document.write('</TABLE>');
	}
