var n_show=new Array();
var n_date=new Array();
var n_title=new Array();
var n_short=new Array();
var n_long=new Array();

n_show[1]=true
n_date[1]="09 September 2005"
n_title[1]="Old Sapper Saying"
n_short[1]="Ross Merrill pointed out"
n_long[1]="Ross Merrill pointed out that for every mile of road, there are two miles of ditch"

n_show[2]=true
n_date[2]="01 Sep 2005"
n_title[2]="Dump Truck - completed!!!"
n_short[2]="WWII RCE Dump Truck, is now restored. The vehicle will remain here in Chilliwack."
n_long[2]="George Morden and his dedicated crew have completed the restoration of the Dump Truck. Many thanks to all that participated and especially to those that donated - Bravo Zulu George!"

n_show[3]=true
n_date[3]="10 Sep 2005"
n_title[3]="Historical Society Study/Research"
n_short[3]="LCol (Ret'd) Al Loveridge is Chairman"
n_long[3]="LCol (Ret'd) Al Loveridge and his study group of Gwen Goodey, Ken Chisholm and Ralph De Coste have completed the history of The All Sapper Chapels - Well Done!"

n_show[4]=true
n_date[4]="15 Sep 2005"
n_title[4]="Funding Drive"
n_short[4]="We'll be accepting donations to fund our events.  Please contribute."
n_long[4]="We'll be accepting donations to fund our events.  Please contribute. All donations of $20.00 or greater will receive a tax deductible receipt. This is strictly a volunteer run society. Wages are not paid to any Director or Table Officer. Your entire donation goes toward the running of the Society. Please be generous."

n_show[5]=true
n_date[5]="01 Sep 2005"
n_title[5]="CFBCHS General Meetings"
n_short[5]="Meetings are held on the second Thursday of each month, at the Masonic Hall, 45905 Hocking Ave., Chilliwack, BC at 7 p.m."
n_long[5]="Guests are welcome, and the treasurer will be able to accept membership payments, and artifact donations will also be gratefully received."

n_show[6]=true
n_date[6]="27 Sep 2005"
n_title[6]="Pot of Gold - $1,000.00"
n_short[6]="The winning ticket was held by - Mr. Ed Bishop of Chilliwack - Congratulations!."
n_long[6]="Only 100 tickets were sold. Draw date was - 19 Nov 2005 at 12:00 noon at the Display Rooms, 45905 Hocking Ave., (Masonic Hall)."

n_show[7]=true
n_date[7]="27 Sep 2005"
n_title[7]="Reunions 2006"
n_short[7]="There will be two reunions at Chilliwack in 2006."
n_long[7]="Contact Jim Harris - 604-858-0618 for further info on the Retired Sapper Reunion, and the Sapper Apprentice Reunion."

n_show[8]=true
n_date[8]="27Sep 2005"
n_title[8]="Monster Garage Sale - 24 Sep 2005"
n_short[8]="Monster Garage Sale was a great success - Thank You"
n_long[8]="On 24th Sep in the Parking Lot of what used to be 1 CER's old bldg #1056, CFBCHS held a Monster Garage Sale. $1,000.00 was realised in profit - Thank You."

n_show[9]=false
n_date[9]=""
n_title[9]=""
n_short[9]=""
n_long[9]=""

n_date[0]="00/00/00"



function news_full() {
	var shown=new Array()
	for (c=1; c < n_date.length; c++)  {
		var smallest=0
			for (count=1; count < n_date.length; count++)  {
				var first=n_date[count]
				var second=n_date[smallest]
				if (shown[count]!=1){
				if (first>second){
				smallest=count
				}
				}
		}
		if (n_show[smallest]) {
			document.write('<a name="'+smallest+'">')
			document.write('<div class="bigbody2">')
			document.write('<p>'+n_date[smallest]+' <b> '+n_title[smallest]+' </b></p>')
			document.write('</div>')
			document.write('<div class="body">')
			document.write('<p>'+n_long[smallest]+'</p>') 
			document.write('</div>')
		}
			shown[smallest]=1
	}	
		document.write('</div>')
}

function news_list() {
			document.write('<table>')
	var shown=new Array()
	for (c=1; c < n_date.length; c++)  {
		var smallest=0
			for (count=1; count < n_date.length; count++)  {
				var first=n_date[count]
				var second=n_date[smallest]
				if (shown[count]!=1){
				if (first>second){
				smallest=count
				}
				}
		}
		if (n_show[smallest]) {
			document.write('<tr><td  bgcolor="#999933">')
			document.write('<div class="list">')
			document.write('<p>'+n_date[smallest]+'<b> '+n_title[smallest]+' </b></p>')
			document.write('</div></td></tr>')
			document.write('<tr><td><div class="list">')
			document.write('<p>'+n_short[smallest]+'<a href="news.html#'+smallest+'"> More info</a></p>') 
			document.write('</div></td></tr>')
		}
			shown[smallest]=1
	}	
			document.write('</table>')

}


