<!--
var section_name = new Array("Home", "Products", "Services", "Ordering", "Distributor");
var section_link = new Array("../index.htm", "../nanocsproduct.htm", "../nanocsproduct.htm", "../Order.htm", "../Order.htm");
// print top bar
document.write('<table width="820" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr><td>');
document.write('<img height="19" src="images/bg_top3.gif" width="820">');
document.write('</td></tr></table>');
// print logo
document.write('<table width="820" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr nowrap>');
document.write('<td style="height: 66px" rowspan="2" width="225">&nbsp;<img border="0" src="logo1.gif" height="65" width="208"></td>');
// pirnt navigation bar
document.write('<td align="right" valign="top" width="550">');
document.write('<table cellSpacing="0" cellPadding="0" border="0">');
document.write('<tr nowrap>');
document.write('<td style="height: 64px" valign="top">');
document.write('<table height="22" cellSpacing="0" cellPadding="3" border="0" align="right">');
document.write('<tr vAlign="center" align="left" nowrap>');

for (var i = 0; i < section_name.length; i++)
{
	document.write('<td height="22">');
	document.write('<a class="toplevelmenulink" href="' + section_link[i] + '" onMouseOver="window.status=\'A brief introduction to the Nanocs.\';return true" onMouseOut=""><b><FONT size="2">' + 
 		section_name[i] + '</FONT></b></a>');
	document.write('</td>');
	if (i != section_name.length - 1)
		document.write('<td class="toplevelmenulink" height="22">&nbsp;|&nbsp;</td>');
}
document.write('</tr>');
document.write('</table>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
document.write('</td></tr>');
document.write('<tr><td width="800"></td></tr>');
document.write('</table>');
//-->

