if ((location.pathname.search("blog")==-1) && (
	(location.pathname=="/chester/") ||
	(location.pathname.search("200....html")!=-1) ||
	(location.pathname.search("index.html")!=-1))) {
	var meses = new Array('Jan','Fev','Mar','Abr','Mai','Jun','Jul','Ago','Set','Out','Nov','Dez');
	document.write('<center>');
	document.write('  <form name="frmArquivo">');
	document.write('    Notas Antigas: <select name="lista" onChange="location.href=frmArquivo.lista.options[frmArquivo.lista.selectedIndex].value">');
	for(ano=2007;ano>=2001;ano--) {
		for(mes=12;mes>=1;mes--) {
			if ( ((ano*100+mes)>=200111) && /* começou aqui */
			     ((ano*100+mes)!=200304) && /* não teve esse mês */
			     ((ano*100+mes)<=200504)    /* mês atual */ ) {
				mesFmt = mes;
				if (mes<=9) {
					mesFmt='0'+mesFmt;
				}
				if (location.pathname.search((ano*100+mes)+'.html')!=-1) {
					isSelected = " SELECTED";
				} else {
					isSelected = "";
				}
				document.write('<option value="'+ano+mesFmt+'.html"'+isSelected+'>'+meses[mes-1]+'/'+ano+'</option>');
			}
		}
	}
	document.write('    </select>');
	document.write('  </form>');
	document.write('</center>');
} else {
  document.write('<br>');

}



