// JavaScript Document

//
// To display an important message at the top of the "Daltons in History" Front Page, 
// Insert the message between single quotes ON ONE LINE.
//
//example: 
//dgs_newsletter_message = 'Please note that the November 2007 issue of "Daltons in History" will not be posted here until Saturday 3 November.';										
//
dgs_newsletter_message = '';

dih_volume					= "12";			// example: dih_volume = "10";	
dih_no						= "6";			// example: dih_no = "10";
dih_month					= "June";			// example: dih_month = "October";
dih_year					= "2009";			// example: dih_year = "2007";

// The example below shows a Newsletter with 11 Sections (Articles). 
// The first is normally "Notes from the Chairman of the DGS",
// The sixth is "Dalton Strays",
// The next to last is "Notes from your American Secretary" and
// The last is usually "Editor's Message".
// Please arrange the 'dgs_document_contents' sequentially (without gaps) in the order you want each article to appear.

dgs_document_contents		=  new Array();
dgs_document_contents[0]	= "Contents";												//			DO NOT CHANGE!
dgs_document_contents[1]	= "Notes from the Chairman of the DGS";						//keywords: CHAIRMAN-DGS-NOTE
dgs_document_contents[2]	= "DGS 2009 AGM - Lancashire, England - 22nd/23rd August 2009";	//keywords: ANNUAL-GENERAL-MEETING
dgs_document_contents[3]	= "Tom and Gerry's Travel Journal, No 6";					//keywords: TRAVEL-JOURNAL-6
dgs_document_contents[4]	= "Sands Post Office Directory";							//keywords: SANDS-POST-OFFICE
dgs_document_contents[5]	= "Major Most Reverend (Monsignor) Michael Joseph Dalton (1902 - 2009)";	//keywords: MICHAEL-JOSEPH-DALTON
dgs_document_contents[6]	= "Sir Charles Dalton";										//keywords: SIR-CHARLES-DALTON
dgs_document_contents[7]	= "Dalton Strays";											//keywords: DALTON-STRAYS
dgs_document_contents[8]	= "Anything Dalton Challenge";								//keywords: ANYTHING-DALTON-CHALLENGE
dgs_document_contents[9]	= "Notes from your American Secretary";						//keywords: AMERICAN-SECRETARY-NOTE
dgs_document_contents[10]	= "Editor's Message";										//keywords: EDITOR-MESSAGE

dgs_document_group = new Array();
dgs_document_group[0] = new Array("content","CONTENT","","");								//contents: DO NOT CHANGE!
dgs_document_group[1] = new Array("chairmandgsnote","CHAIRMAN","DGS","NOTE");				//keywords: CHAIRMAN-DGS-NOTE
dgs_document_group[2] = new Array("sandspostoffice","SANDS","POST","OFFICE");				//keywords: SANDS-POST-OFFICE
dgs_document_group[3] = new Array("reminiscences","REMINISCENCES","OF","ORANGE");   		//keywords: REMINISCENCES-OF-ORANGE
dgs_document_group[4] = new Array("tomandgerry","TRAVEL","JOURNAL","");						//keywords: TRAVEL-JOURNAL
dgs_document_group[5] = new Array("annualgeneralmeeting","2009","AGM","");					//keywords: 2009-AGM
dgs_document_group[6] = new Array("michaeljosephdalton","MICHAEL","JOSEPH","DALTON");		//keywords: MICHAEL-JOSEPH-DALTON
dgs_document_group[7] = new Array("daltonstrays","DALTON","STRAYS","");						//keywords: DALTON-STRAYS
dgs_document_group[8] = new Array("anythingdalton","ANYTHING","DALTON","CHALLENGE");		//keywords: ANYTHING-DALTON-CHALLENGE
dgs_document_group[9] = new Array("sircharlesdalton","SIR","CHARLES","DALTON");				//keywords: SIR-CHARLES-DALTON
dgs_document_group[10] = new Array("americannews","AMERICAN","SECRETARY","NOTE");  			//keywords: AMERICAN-SECRETARY-NOTE
dgs_document_group[11] = new Array("editormessage","EDITOR","MESSAGE","");					//keywords: EDITOR-MESSAGE
dgs_document_group[12] = new Array("default","default","","");								//default : DO NOT CHANGE!
//
// Note: a 'dgs_document_group' number does not necessarily correspond to its 'dgs_document_contents' Article/Section number.
//       The most common error is to leave gaps or duplicates. You may have more 'dgs_document_group' entries than Articles.
						
//
// If you have filled in the above, SEQUENTIALLY, with NO DUPLICATES and with NO GAPS, 
// please upload this javascript with Filename 'newsletter/latest/dih_content.js'
// to the 'DGS Test Update' site.
//
// DO NOT CHANGE BELOW THIS POINT
//

if (window.location.href.indexOf("newsletter") >= 0) {pageFilename = "newsletter.gif";}
else if (window.location.href.indexOf("diharchive") >= 0) {pageFilename = "diharchive.gif";}

dgs_document_name			=  new Array();
if ( typeof( window[ 'pageFilename' ] ) == "undefined" ) {
pageFilename = "diharchive.gif";}
if (pageFilename == "newsletter.gif") {
dgs_document_name[0]		= "Daltons in History";
dgs_document_name[1]		= "The DGS monthly newsletter";
}
else if (pageFilename == "diharchive.gif") {
dgs_document_name[0]		= "Daltons in History Archive";
dgs_document_name[1]		= "";
}
dgs_document_name[2]		= "Volume "+dih_volume+" No "+dih_no;
dgs_document_name[3]		= dih_month+" "+dih_year;
dgs_document_name[4]		= "Contents";

dgs_bar_header				=  new Array();
dgs_bar_header[0]			= dgs_document_name[0];
dgs_bar_header[1]			= dgs_document_name[2];
dgs_bar_header[2]			= dgs_document_name[3];

dgs_bar_header_style		=	"p";

