// JavaScript Document

function writeCrumbs(pageName) {

	document.write("&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"/grid-index.php\" class=\"date_Row_Text\">home</a> : ");
    
	if (pageName == "about") {
		document.write("<a href=\"/about-us/\" class=\"date_Row_Text\">about us</a>");
	}
	if (pageName == "products") {
		document.write("<a href=\"/products/\" class=\"date_Row_Text\">products</a>");
	}
	if (pageName == "consulting") {
		document.write("<a href=\"/consulting/\" class=\"date_Row_Text\">consulting</a>");
	}
	if (pageName == "news") {
		document.write("<a href=\"/news/\" class=\"date_Row_Text\">news</a>");
	}	
	if (pageName == "support") {
		document.write("<a href=\"/support-response/\" class=\"date_Row_Text\">support response</a>");
	}
	if (pageName == "caseStudies") {
		document.write("<a href=\"/case-studies/\" class=\"date_Row_Text\">case studies</a>");
	}
	if (pageName == "contact") {
		document.write("<a href=\"/contact-us/\" class=\"date_Row_Text\">contact us</a>");
	}
	if (pageName == "testimonials") {
		document.write("<a href=\"/testimonials/\" class=\"date_Row_Text\">testimonials</a>");
	}
	if (pageName == "casestudies") {
		document.write("<a href=\"/case-studies/\" class=\"date_Row_Text\">case studies</a>");
	}	
	if (pageName == "newssearch") {
		document.write("<a href=\"/news/search.php/\" class=\"date_Row_Text\">news archive search</a>");
	}		
	if (pageName == "bulletins") {
		document.write("<a href=\"/bulletins/\" class=\"date_Row_Text\">monthly bulletins</a>");
	}	
	if (pageName == "services") {
		document.write("<a href=\"/services/\" class=\"date_Row_Text\">services</a>");
	}	
	if (pageName == "productivityDevelopment") {
		document.write("<a href=\"/bulletins/\" class=\"date_Row_Text\">productivity development</a>");
	}		
	if (pageName == "vip") {
		document.write("<a href=\"/vip/\" class=\"date_Row_Text\">vip articles</a>");
	}	
	if (pageName == "logout") {
		document.write("<a href=\"/#/\" class=\"date_Row_Text\">logout</a>");
	}		
	if (pageName == "login") {
		document.write("<a href=\"/#/\" class=\"date_Row_Text\">login</a>");
	}

	
	document.write("  </span>");

}
