//JavaScript courtesy of Nick Heinle "Designing With JavaScript", O'Reilly
//Array Function
function makeArray() {
var args = makeArray.arguments;
	for (var i = 0; i < args.length; i++) {
	this[i] = args[i];
	}
this.length = args.length;
}
//This code written for display of bulletin in HTML format
//This array holds the description and names of the pages.
var pages = new makeArray("Bulletin Date",
	"Oct 24, 2001",
	"Oct 17, 2001",
	"Oct 3, 2001",
	"Sep 26, 2001",
	"Sep 19, 2001",
	"Sep 12, 2001",
	"Sep 5, 2001",
	"Aug 29, 2001",
	"Aug 22, 2001",
	"Aug 15, 2001",	
	"Aug 8, 2001",
	"Aug 1, 2001",
	"Jul 25, 2001",
	"Jul 18, 2001",
	"Jul 11, 2001",
	"Jun 27, 2001",
	"Jun 20, 2001",
	"Jun 13, 2001",
	"Jun 6, 2001",
	"May 30, 2001",
	"May 23, 2001",
	"May 16, 2001",
	"May 9, 2001",
	"May 2, 2001",
	"Apr 25, 2001",
	"Apr 18, 2001",
	"Apr 11, 2001",
	"Apr 4, 2001",
	"Mar 28, 2001",
	"Mar 21, 2001",
	"Mar 14, 2001",
	"Feb 28, 2001",
	"Feb 21, 2001",
	"Feb 14, 2001",
	"Feb 7, 2001",
	"Jan 31, 2001",
	"Jan 24, 2001",
	"Jan 17, 2001",
	"Jan 10, 2001",
	"Jan 3, 2001",
	"Dec 27, 2000",
	"Dec 20, 2000",
	"Dec 6, 2000",
	"Nov 29, 2000",
	"Nov 22, 2000",
	"Nov 15, 2000",
	"Nov 8, 2000",
	"Nov 1, 2000",
	"Oct 25, 2000",
	"Oct 18, 2000",
	"Oct 11, 2000",
	"Oct 4, 2000",
	"Sep 27, 2000",
	"Sep 20, 2000",
	"Sep 13, 2000",
	"Sep 6, 2000",
	"Aug 30, 2000",
	"Aug 23, 2000",
	"Aug 16, 2000",
	"Aug 9, 2000",
	"Aug 2, 2000",
	"Jul 26, 2000",
	"Jul 19, 2000",
	"Jul 12, 2000",
	"Jul 5, 2000",
	"Jun 28, 2000",
	"Jun 21, 2000",
	"Jun 14, 2000",
	"Jun 7, 2000",
	"May 31, 2000",
	"May 24, 2000",
	"May 17, 2000",
	"May 10, 2000",
	"May 3, 2000",
	"Apr 26, 2000",
	"Apr 19, 2000",
	"Apr 12, 2000",
	"Apr 5, 2000",
	"Mar 29, 2000",
	"Mar 15, 2000",
	"Mar 08, 2000",
	"Mar 01, 2000",
	"Feb 23, 2000",
	"Feb 16, 2000",
	"Feb 9, 2000",
	"Feb 2, 2000",
	"Jan 26, 2000",
	"Jan 19, 2000",
	"Jan 12, 2000",
	"Jan 5, 2000",
	"Dec 29, 1999",
	"Dec 22, 1999",
	"Dec 15, 1999",
	"Dec 8, 1999",
	"Dec 1, 1999",
	"Nov 10, 1999");
//This array holds the URL of the HTML pages.
var urls = new makeArray("",
	"bulletins/2001Oct24.html",
	"bulletins/2001Oct17.html",
	"bulletins/2001Oct03.html",
	"bulletins/2001Sep26.html",
	"bulletins/2001Sep19.html",
	"bulletins/2001Sep12.html",
	"bulletins/2001Sep05.html",
	"bulletins/2001Aug29.html",
	"bulletins/2001Aug22.html",
	"bulletins/2001Aug15.html",	
	"bulletins/2001Aug08.html",
	"bulletins/2001Aug01.html",
	"bulletins/2001Jul25.html",
	"bulletins/2001Jul18.html",
	"bulletins/2001Jul11.html",
	"bulletins/2001Jun27.html",
	"bulletins/2001Jun20.html",
	"bulletins/2001Jun13.html",
	"bulletins/2001Jun06.html",
	"bulletins/2001May30.html",
	"bulletins/2001May23.html",
	"bulletins/2001May16.html",
	"bulletins/2001May09.html",
	"bulletins/2001May02.html",
	"bulletins/2001Apr25.html",
	"bulletins/2001Apr18.html",
	"bulletins/2001Apr11.html",
	"bulletins/2001Apr04.html",
	"bulletins/2001Mar28.html",
	"bulletins/2001Mar21.html",
	"bulletins/2001Mar14.html",
	"bulletins/2001Feb28.html",
	"bulletins/2001Feb21.html",
	"bulletins/2001Feb14.html",
	"bulletins/2001Feb07.html",
	"bulletins/2001Jan31.html",
	"bulletins/2001Jan24.html",
	"bulletins/2001Jan17.html",
	"bulletins/2001Jan10.html",
	"bulletins/2001Jan03.html",
	"bulletins/2000Dec27.html",
	"bulletins/2000Dec20.html",
	"bulletins/2000Dec06.html",
	"bulletins/2000Nov29.html",
	"bulletins/2000Nov22.html",
	"bulletins/2000Nov15.html",
	"bulletins/2000Nov08.html",
	"bulletins/2000Nov01.html",
	"bulletins/2000Oct25.html",
	"bulletins/2000Oct18.html",
	"bulletins/2000Oct11.html",
	"bulletins/2000Oct04.html",
	"bulletins/2000Sep27.html",
	"bulletins/2000Sep20.html",
	"bulletins/2000Sep13.html",
	"bulletins/2000Sep06.html",
	"bulletins/2000Aug30.html",
	"bulletins/2000Aug23.html",
	"bulletins/2000Aug16.html",
	"bulletins/2000Aug09.html",
	"bulletins/2000Aug02.html",
	"bulletins/2000Jul26.html",
	"bulletins/2000Jul19.html",
	"bulletins/2000Jul12.html",
	"bulletins/2000Jul05.html",
	"bulletins/2000Jun28.html",
	"bulletins/2000Jun21.html",
	"bulletins/2000Jun14.html",
	"bulletins/2000Jun07.html",
	"bulletins/2000May31.html",
	"bulletins/2000May24.html",	
	"bulletins/2000May17.html",
	"bulletins/2000May10.html",
	"bulletins/2000May03.html",
	"bulletins/2000Apr26.html",
	"bulletins/2000Apr19.html",
	"bulletins/2000Apr12.html",
	"bulletins/2000Apr05.html",
	"bulletins/2000Mar29.html",
	"bulletins/2000Mar15.html",
	"bulletins/2000Mar08.html",
	"bulletins/2000Mar01.html",
	"bulletins/2000Feb23.html",
	"bulletins/2000Feb16.html",
	"bulletins/2000Feb09.html",
	"bulletins/2000Feb02.html",
	"bulletins/2000Jan26.html",
	"bulletins/2000Jan19.html",
	"bulletins/2000Jan12.html",
	"bulletins/2000Jan05.html",
	"bulletins/1999Dec29.html",
	"bulletins/1999Dec22.html",
	"bulletins/1999Dec15.html",	
	"bulletins/1999Dec08.html",	
	"bulletins/1999Dec01.html",
	"bulletins/1999Nov10.html");
//This function determines which page is selected and goes to it.
function goPage(form) {
i = form.menu.selectedIndex;
	if (i != 0) {
	window.location.href = urls[i];
	}
}

//This code written for display of bulletin in PDF format
//This array holds the description and names of the pages.
var pagesPDF = new makeArray("Bulletin Date",
	"Sep 19, 2001",
	"Sep 12, 2001",
	"Sep 5, 2001",
	"Aug 29, 2001",
	"Aug 22, 2001",
	"Aug 8, 2001",
	"Aug 1, 2001",
	"July 25, 2001",
	"July 18, 2001",
	"July 11, 2001",
	"June 27, 2001",
	"June 20, 2001",
	"June 13, 2001",
	"June 6, 2001",
	"May 30, 2001",
	"May 23, 2001",
	"May 16, 2001",
	"May 9, 2001",
	"May 2, 2001",
	"Apr 25, 2001",
	"Apr 18, 2001",
	"Apr 11, 2001",
	"Apr 4, 2001",
	"Mar 28, 2001",
	"Mar 21, 2001",
	"Mar 14, 2001",
	"Feb 28, 2001",
	"Feb 21, 2001",
	"Feb 14, 2001",
	"Feb 7, 2001",
	"Jan 31, 2001",
	"Jan 24, 2001",
	"Jan 17, 2001",
	"Jan 10, 2001",
	"Jan 3, 2001",
	"Dec 27, 2000",
	"Dec 20, 2000",
	"Dec 6, 2000",
	"Nov 29, 2000");
//This array holds the URL of the pages.
var urlsPDF = new makeArray("",
	"pdf/2001Sep19.pdf",
	"pdf/2001Sep12.pdf",
	"pdf/2001Sep05.pdf",
	"pdf/2001Aug29.pdf",
	"pdf/2001Aug22.pdf",
	"pdf/2001Aug08.pdf",
	"pdf/2001Aug01.pdf",
	"pdf/2001Jul25.pdf",
	"pdf/2001Jul18.pdf",
	"pdf/2001Jul11.pdf",
	"pdf/2001Jun27.pdf",
	"pdf/2001Jun20.pdf",
	"pdf/2001Jun13.pdf",
	"pdf/2001Jun06.pdf",
	"pdf/2001May30.pdf",
	"pdf/2001May23.pdf",
	"pdf/2001May16.pdf",
	"pdf/2001May09.pdf",
	"pdf/2001May02.pdf",
	"pdf/2001Apr25.pdf",
	"pdf/2001Apr18.pdf",
	"pdf/2001Apr11.pdf",
	"pdf/2001Apr04.pdf",
	"pdf/2001Mar28.pdf",
	"pdf/2001Mar21.pdf",
	"pdf/2001Mar14.pdf",
	"pdf/2001Feb28.pdf",
	"pdf/2001Feb21.pdf",
	"pdf/2001Feb14.pdf",
	"pdf/2001Feb07.pdf",
	"pdf/2001Jan31.pdf",
	"pdf/2001Jan24.pdf",
	"pdf/2001Jan17.pdf",
	"pdf/2001Jan10.pdf",
	"pdf/2001Jan03.pdf",
	"pdf/2000Dec27.pdf",
	"pdf/2000Dec20.pdf",
	"pdf/2000Dec06.pdf",
	"pdf/2000Nov29.pdf");
//This function determines which page is selected and goes to it.
function goPagePDF(form) {
i = form.menupdf.selectedIndex;
	if (i != 0) {
	window.location.href = urlsPDF[i];
	}
}