// JavaScript Document
function footnote(strcurrentpage){
	if (strcurrentpage == 'home'){
		document.write("Home&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=../mapes/index.html>Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'about'){
		document.write("About Mapes&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=../about/index.html>About Mapes</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'products'){
		document.write("Products&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=../products/index.html>Products</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
    if (strcurrentpage == 'carriers') {
	    document.write("Carriers&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
    else{
	    document.write("<a href=../carriers/index.html>Carriers</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'contact'){
		document.write("Contact Us <br>");
		}
	else{
		document.write("<a href=../contact/index.html>Contact Us</a> <br>");
		}
}		
	


