// JavaScript Document
 function printFooter() {
    document.writeln('MinnStar Inc. ');
    document.writeln('<br>');
    document.write('4142 Shoreline Drive, MN 55384');
     document.writeln('<br>');
	 document.writeln('Phone: 952-471-2451 &nbsp;&nbsp;&nbsp; Fax:952-471-2463 ');
	  document.writeln('<br>');
	   document.writeln('Staffing Solutions');
	   	  document.writeln('<br>');
	   document.writeln('Copyright 2011');
	    document.writeln('<br>');
	     document.writeln('all rights reserved.');
  
}
 
 function printBottomMenu() {
    document.writeln(" <a href='../index.html'>Home</a> | <a href='../pages/contact.html'>Contact Us</a> | <a href='../pages/about.html'>About Us</a>  <br />");
    

  
}
 
