// JavaScript Document
/*------------------------------Date Filter----------------------------------------*/
// limits the number of days a newsletter will be listed. 
dayLimit=0; //Example: dayLimit=180;  Use zero(0) for no filter.
/*
--------------------------------Line Format-----------------------------------------
     n       is the name of the array
	 
    [i]      is the number of the item in the array. (javascript is zero based)
	
 'file.ext'  the 'filename.ext' must be inside (') single quotes.
             The file name is important; it must be the year (2007),
             the month (02) and the day (09) plus (.htm).
			 
    ;        Javascript requires a semicolon (;) at the end of each statment.

    Example: 
        n[99]='20061225.htm';
        n[100]='20070101.htm';
		
    Note*    Order doesnot matter!  The name of the file sets up the list .
             Please add all new files at the bottom.
-------------------------------------------------------------------------------------
*/			 

n[0]='20060802.htm';
n[3]='20060915.htm';
n[4]='20061106.htm';
n[5]='20060726.htm';
n[6]='20061120.htm';
n[7]='20061220.htm';
n[8]='20070103.htm';
n[9]='20070117.htm';
n[10]='20070207.htm';
n[11]='20070223.htm';
n[12]='20070309.htm';
n[13]='20070322.htm';
n[14]='20070404.htm';
n[15]='20070419.htm';
n[16]='20070504.htm';
n[17]='20070608.htm';
n[18]='20070625.htm';
n[19]='20070713.htm';
n[20]='20070725.htm';
n[21]='20070809.htm';
n[22]='20070823.htm';
n[23]='20070912.htm';
n[24]='20071003.htm';
n[25]='20071019.htm';
n[26]='20071101.htm';
n[27]='20071114.htm';
n[28]='20071130.htm';
n[29]='20071214.htm';
n[30]='20080118.htm';
n[31]='20080204.htm';
n[32]='20080220.htm';
n[33]='20080312.htm';
n[34]='20080326.htm';
n[35]='20080410.htm';
n[36]='20080422.htm';
n[37]='20080508.htm';
n[38]='20080605.htm';
n[39]='20080623.htm';








