
function do_nav_html(pagetitle) {
	
	var testarray = new Array();

    testarray[0] = new Array("Home", "/");
	testarray[1] = new Array("Products", "#", "Products Home", "/products.htm", "Material", "#", "Components", "#");
    testarray[2] = new Array("Applications", "/applications/app_isolator.htm", "Waveplate Designer", "/applications/app_designer.htm",  "Isolator", "/applications/app_isolator.htm", "Ellipsometry", "/applications/app_ellips.htm", "Pockels cell", "/applications/app_EOswitch.htm", "DPSS", "/applications/app_DPSS.htm");
    testarray[3] = new Array("Exhibitions", "/exhibitions/exhibitions.htm");
    testarray[4] = new Array("About us", "/about/profile.htm", "Company Profile", "/about/profile.htm", "Contact us", "/about/contact.htm", "Distributor", "/about/distributor.htm","ISO 9001:2000", "/about/ISO.htm","Payment", "/about/Payment.htm");
    testarray[5] = new Array("News", "/news/news.htm");
	testarray[6] = new Array("Site Map", "/site map/site map.htm");

    var Material_array = new Array("High Power Crystals", "High_Power/High_Power_Crystals.htm","Birefringent Crystals", "biref_crystals/biref_crystals.htm", "Laser Crystal", "laser_crystal/laser_crystal.htm", "NLO Crystal", "NLO_crystal/NLO_crystal.htm", "Passive Crystals", "passive_crystal/passive_crystal.htm", "E-O Crystal", "electro_optics/electro_optics.htm", "Farady Crystal", "farady_crystal/farady_crystal.htm", "Optical Crystal", "optical_crystal/optical_crystal.htm", "Optical Glass", "optical_glass/optical_glass.htm", "Color Glass", "color_glass/color_glass.htm");
    var Components_array = new Array("Waveplate", "waveplate/waveplate.htm", "Polarizer", "polarizer/polarizer.htm", "Polarizing beam splitter","PBS/Polarizing_beam_splitter.htm","Lens", "lens/lens.htm", "Prism", "prism/prism.htm", "Windows", "windows/windows.htm", "Coating", "Coating/Coating.htm","E-O Q Switch", "E-O/Pockels_cell.htm", "A-O Switch", "A-O/AO_switch.htm", "Green Laser Module", "GreenLaserModule/GLMS-01,05,10.htm","Micro-optics Assembly", "Micro-optics Assembly/Micro-optics Assembly.htm");

	var HTMLCode = "";
	HTMLCode += "<ul class=\"contain\">";
	for (i=0; i<testarray.length; i++)
	{
		if (testarray[i].length < 3) {
		   if (testarray[i][0] == pagetitle) 
		   {
			   HTMLCode += "<li class=\"active\"><a href=\"" + testarray[i][1] + "\" class=\"toppernav\">" + testarray[i][0] + "</a></li>";
		   } else {
			   HTMLCode += "<li class=\"top\"><a href=\"" + testarray[i][1] + "\">" + testarray[i][0] + "</a></li>";
		   }		    
		} else {
		   if (testarray[i][0] == pagetitle) 
		   {
			   HTMLCode += "<li class=\"active\"><a href=\"" + testarray[i][1] + "\" class=\"toppernav\">" + testarray[i][0] + "</a><ul>";
		   } else {
			   HTMLCode += "<li class=\"top\"><a href=\"" + testarray[i][1] + "\">" + testarray[i][0] + "</a><ul>";
		   }

		   for (j=1; j<testarray[i].length/2; j++)
		   {
			   if (testarray[i][2*j] == 'Material')
			   {
				  HTMLCode += "<li class=\"opensubnav\"><a href=\"" + testarray[i][2*j+1] + "\">" + testarray[i][2*j] + "</a><ul>";
				  for (k=0; k<Material_array.length/2; k++)
				  {
					  HTMLCode += "<li><a href=\"/products/material/" + Material_array[2*k+1] + "\">" + Material_array[2*k] + "</a></li>";
				  }
				  HTMLCode += "</ul></li>";
			   } else if (testarray[i][2*j] == 'Components') {
				  HTMLCode += "<li class=\"opensubnav\"><a href=\"" + testarray[i][2*j+1] + "\">" + testarray[i][2*j] + "</a><ul>";
				  for (k=0; k<Components_array.length/2; k++)
				  {
					  HTMLCode += "<li><a href=\"/products/components/" + Components_array[2*k+1] + "\">" + Components_array[2*k] + "</a></li>";
				  }
				  HTMLCode += "</ul></li>";
			   } else {
				  HTMLCode += "<li class=\"\"><a href=\"" + testarray[i][2*j+1] + "\">" + testarray[i][2*j] + "</a></li>";		   
			   }
		   }
		   HTMLCode += "</ul></li>";
	    }    
	}
	HTMLCode += "</ul>";
	//document.write (HTMLCode); 
	if (navigator.appName=='Microsoft Internet Explorer') 
	{
       pageHeaderNav.innerHTML=HTMLCode;
	} else {
       document.write(HTMLCode);
	}
}

//footer info of all webpages
function do_footer_html() {
    var footer_str = "";
	footer_str += "<a href='mailto:sales@dayoptics.com'><p>&copy;2007 Dayoptics, Inc. Address: 20 Baihua Zhou Road jinshan Pushang Industrial Park, Fuzhou, China. <br />Tel: +86 591 83854978, 83215681 Fax: +86 591 83215359 E-mail: sales@dayoptics.com<br /></p></a>";
	if (navigator.appName=='Microsoft Internet Explorer') 
	{
       footer.innerHTML=footer_str;
	} else {
       document.write(footer_str);
	}
}