//Keep footer for pages here

var copyright_date = new Date();                    //Make a Date object
var copyright_year = copyright_date.getFullYear();  //Create a year string from Date
var terms = "<br><a href=\"terms.html\" class=\"mainanch3\">Terms &amp; Conditions</a>";
//NOTE: Client not interested in terms. removing for now.
terms = ""; //Delete this if terms in footer reinstated

//Put footer text here
var footer = "<span class=\"text_small_footer\">Medical Laboratory Solutions, Inc.</span><span class=\"copyrightfooter\">&#149; 5635 Raby Road, Suite J<br>Norfolk, VA 23502 &#149; US 800.813.4691 or 757.466.9066 &#149; fax 757.466.8776<br>Copyright " + copyright_year  + ", Medical Laboratory Solutions, Inc. All Rights reserved." + terms + "</span>";


function print_footer(){
   //Just write the string created above
   document.write(footer);
}


