function writeSecondNavigator(title,smallTitles,smallLinks)
{
	var s="";
	s+="<table cellpadding=0 cellspacing=0 align=center rules=no width=800px>";
	s+="<tr>";
	s+="<td colspan='2' style='width:800px;height:42px;border-bottom:solid #ffffff 2px;text-align:left;font-size:18px;color:#ffffff;background:#222288;text-indent:8px;'>";
	s+=title+" >> ";
	for(i=0;i<smallTitles.length;i++)
	{
		s+="<a style='font-size:14px;color:#ffffff;";
		temp=window.location;
		if(window.location.toString().indexOf(smallLinks[i])>=0) s+="text-decoration:none;";
		s+="'";
		if(smallLinks[i].length>0) s+="href='"+smallLinks[i]+"'";
		s+=">"+smallTitles[i]+"</a>&nbsp;";
	}
	s+="</td>";
	s+="</tr>";
	s+="</table>";
	document.write(s);
}

