var b_show=new Array();
var b_date=new Array();
var b_short=new Array();
var b_email=new Array();
var b_name=new Array();
var b_long=new Array();


b_show[1]=true
b_date[1]="15 Sep 2005"
b_name[1]=""
b_email[1]="jimharris@shaw.ca"
b_short[1]="All Sappers Chapel"
b_long[1]="WANTED, Any and all HISTORICAL information, stories and pictures dealing with All Sappers Chapel at Chilliwack BC. SEND them via Internet or Post. If requested, they will be returned"

b_show[2]=true
b_date[2]="24 Sep 2005"
b_name[2]=""
b_email[2]="jimharris@shaw.ca"
b_short[2]="CFB Chilliwack Historical Society Garage Sale - Thank You."
b_long[2]="Another huge success, $1,000.00 realised at our latest garage sale. Many thanks to all who volunteered their time, especially the Gorden family. BZ to All."

b_show[3]=true
b_date[3]="1 - 4 Nov 2005"
b_name[3]=""
b_email[3]="jimharris@shaw.ca"
b_short[3]="Canada Remembers - A Living History Event"
b_long[3]="Our Canada Remembers Event was a tremendous success - 1000 visitors"

b_show[4]=true
b_date[4]="15 Sep 2005"
b_name[4]=""
b_email[4]="jimharris@shaw.ca"
b_short[4]="Camp Newspapers"
b_long[4]="Do you have any original Camp Newspapers? The CFB Chwk Historical Society would like to have them. Many wonderful historical records are printed in these papers, and are excellent ways for us to preserve the history of the base. Please contact me direct."

b_show[5]=true
b_date[5]="15 Sep 2005"
b_name[5]=""
b_email[5]="jimharris@shaw.ca"
b_short[5]="Did You Know"
b_long[5]="Willy Weiler, a PERI, stationed at Camp Chilliwack, won 4 Gold Medals, 3 Silver and a Bronze in 1963 at the Pan-American Games. And, in 1964, another Gold for the Long Vault at the North American Championships, and a Silver in 1966. Willy went on to coach the Canadian Olympic Gymnastics Team in 1968."

b_show[6]=true
b_date[6]="15 Sep 2005"
b_name[6]="Jim Lobe"
b_email[6]="loboj@telus.net"
b_short[6]="Membership Director"
b_long[6]="Please contact Vice President and Membership Director for information about joining the Society at 604-819-5548. $10.00 annually."

b_show[7]=true
b_date[7]="15 Sep 2005"
b_name[7]=""
b_email[7]="jimharris@shaw.ca"
b_short[7]="Front Gate"
b_long[7]="Did you know - the log at the front gate of CFB Chilliwack, was carved by Sapper Apprentice, Bob Ranger, Supervisor, and Bill McInnes - see picture under gallery."

b_show[7]=true
b_date[7]="15 Sep 2005"
b_name[7]=""
b_email[7]="jimharris@shaw.ca"
b_short[7]="CFBCHS Display Rooms"
b_long[7]="Our Display Rooms at 45905 Hocking Ave., Masonic Hall, are open Wednesdays 9 - 12, and Saturdays 9 - 3. Special tour bookings can be arranged, call Jim Harris at 604-858-0618, or Jim Lobe at 604-819-5548"

b_show[8]=true
b_date[8]="15 Sep 2005"
b_name[8]=""
b_email[8]="jimharris@shaw.ca"
b_short[8]="1943 Chevrolet, RCE Tipper - is finished"
b_long[8]="After several long and arduous years, George Morden can finally be congratulated on his excellent and time consuming work in renovating the Dump Truck - WELL DONE to GEORGE and his TEAM"

b_show[9]=true
b_date[9]="15 Sep 2005"
b_name[9]=""
b_email[9]="jimharris@shaw.ca"
b_short[9]="Thank You Canada Lands"
b_long[9]="Since the society stood up in 2000, Canada Lands, LCol Al Dempsey (Ret'd), have been most helpful and supportive of the society. Thank you very much for all of your continued assistance and support."

b_date[0]="00/00/00"



function bull_full() {
	var shown=new Array()
	for (c=1; c < b_date.length; c++)  {
		var smallest=0
			for (count=1; count < b_date.length; count++)  {
				var first=b_date[count]
				var second=b_date[smallest]
				if (shown[count]!=1){
				if (first>second){
				smallest=count
				}
				}
		}
		if (b_show[smallest]) {
			document.write('<a name="'+smallest+'">')
			document.write('<div class="bigbody2">')
			document.write('<p>'+b_date[smallest]+' <b> '+b_name[smallest]+' </b>'+b_short[smallest]+'</p>')
			document.write('</div>')
			document.write('<div class="body">')
			document.write('<p>'+b_long[smallest]+'  <b>Reply to:</b><a href="mailto:'+b_email[smallest]+'"> '+b_email[smallest]+'</a></p>') 
			document.write('</div>')
		}
			shown[smallest]=1
	}

	}

function bull_list() {
	var shown=new Array()
	document.write('<div class="body">')
	for (c=1; c < b_date.length; c++)  {
		var smallest=0
			for (count=1; count < b_date.length; count++)  {
				var first=b_date[count]
				var second=b_date[smallest]
				if (shown[count]!=1){
				if (first>second){
				smallest=count
				}
				}
		}

		if (b_show[smallest]) {

		document.write('<p>'+b_date[smallest]+' <b> '+b_name[smallest]+' </b><a href="bulletin.html#'+smallest+'">'+b_short[smallest]+'</a></p>')

		}
			shown[smallest]=1
	}
	document.write('</div>')
	}


