function BuildMenu() {

  document.write("<ul id=\"MenuBar1\" class=\"MenuBarHorizontal\">");
  document.write("<li><a href=\"Index.php\">Home</a></li>");
  document.write("<li><a class=\"MenuBarItemSubmenu\" href=\"#\">Portfolio</a>");
         document.write("<ul>");
document.write("<li><a href='Landscape.html'>Landscape</a></li>");
document.write("<li><a href='Panorama.html'>Panorama</a></li>");
document.write("<li><a href='WildLife.html'>Wildlife</a></li>");
document.write("<li><a href='Cottage.html'>Cottage</a></li>");
document.write("<li><a href='Artistic.html'>Artistic</a></li>");
   
    document.write("</ul>");
    document.write("</li>");
    document.write("<li><a href=\"ClientAccess.html\">Login</a></li>");
    document.write("<li><a href=\"SelectImages.php\">Orders</a></li>");
    document.write("<li><a href=\"ContactUs.html\">Contact&nbsp;Us</a></li>");
    document.write("<li><a href=\"Links.html\">Links</a></li>");
    document.write("<li><a href=\"Blog.php?PageName=blogs/0.html\">Blog</a></li>");
  document.write("</ul>");
  
  
}

function PrintSiteMap() {

	var SMStr = SiteMapStr();

	document.write(SMStr);
	
}

function SiteMapStr() {

	var str;
	
	str = "<table align=\"center\" cellpadding=\"1\" cellspacing=\"1\" border=\"0\" >";
	str += "<tr><td>&nbsp;</td></tr>"
	str += "<tr><td class=\"stdCN\">";
	
	str += "<a class=\"SiteMap\" href=\"Index.php\">Home</a>&nbsp;&nbsp;";
	str += "<a class=\"SiteMap\" href=\"Landscape.html\">Portfolio</a>&nbsp;&nbsp;";
	str += "<a class=\"SiteMap\" href=\"ClientAccess.html\">Login</a>&nbsp;&nbsp;";
	str += "<a class=\"SiteMap\" href=\"SelectImages.php\">Orders</a>&nbsp;&nbsp;";
	str += "<a class=\"SiteMap\" href=\"ContactUs.html\">Contact Us</a>&nbsp;&nbsp;";
	str += "<a class=\"SiteMap\" href=\"Links.html\">Links</a>&nbsp;&nbsp;";
	str += "<a class=\"SiteMap\" href=\"Blog.php?PageName=blogs/0.html\">Blog</a>&nbsp;&nbsp;";
	
	str += "</td></tr></table>";
	
	return str;
}