var pwyapwy = new Array();
/* format of each line is:
	position|person|e-mail address|telephone number
*/

pwyapwy[0]="Cadeirydd (Chair)|James Williams|dwilliams510@btinternet.com|1570 480743 |";
pwyapwy[1]="Is-Gadeirydd (Vice Chair)|Penny Newton||";
pwyapwy[2]="Ysgrifennydd (General Secretary)|David Hughes|dghughes@btinternet.com|01558 824201";
pwyapwy[3]="Ysgrifennydd Cofnodion (Minute Secretary)|Gwenda Davies||01570 422859";
pwyapwy[4]="Trysorydd (Treasurer)|Gill Dillaway|stephens627@btinternet.com|01570 421949";
pwyapwy[5]="Ysgrifennydd Aelodaeth (Membership Secretary)|David Hughes|dghughes@btinternet.com|01558 824201";
pwyapwy[6]="Ysgrifennydd Llwybrau Troed (Footpaths/ROW's)|Kay Davies|ekdvs@tiscali.co.uk|01570 480041";
pwyapwy[7]="Ysgrifennydd Gwledig (Countryside Secretary)|Janet Hughes||01558 824201";
pwyapwy[8]="Trefnydd Rhaglen (Walking Program)|James Williams|walks@lampeterramblers.org.uk|01570 480743";
pwyapwy[9]="Footpath Volunteers (The Gaffer)|Tom Davies (Cardigan Group)||01545 560217";
pwyapwy[10]="Committee|Penny Newton, Penny David, Genda Punter, Sue Wellings||";
pwyapwy[11]="Footpath Volunteers|Tom Davies, David &amp; Janet Hughes, Margaret Pope, Alan &amp; Margaret Swift, James Williams (meet fortnightly with Ceredigion County Council)||01545 560217";
pwyapwy[12]="Newletter|Gwenda and Philip||01570 422859";

var msg="<p>The committee meet every three months at 7.30 pm in St. Thomas' Church, Lampeter. All members are welcome to attend and contribute to the proceedings. Minutes of meetings are available from the Minute Secretary on request or can be viewed on-line via the <i>Minutes Menu entry</i>.</p>";

function showCommitee() {
	document.write("<h1 class=\"walks\">PWY YW PWY - WHO'S WHO</h1>" + msg + "<h2 class=\"walks\">The Committee</h2>");
	var i = 0;
	var aline = new Array();
	while (i in pwyapwy) {
		aline = pwyapwy[i].split("|");
		document.write("<h3 class=\"walks\">" + "<a name=\"" + i + "\">" + aline[0] + "</a></h3><dl><dt>Contact Details:</dt>");
		document.write("<dd>" + aline[1] + "<br /></dd>");
		if (aline[2] != "") {
			document.write("<dt>E-mail:</dt><dd>" + aline[2] + "</dd>");
		}
		document.write("<dt>Phone:</dt><dd>" + aline[3] + "</dd><dt></dl><a class=\"walks\" href=\"#\" name=\"top\">^ Top</a>");
		i++;
	}
}

function commiteeList() {
	document.write("<br /><div class=\"gradehead\">Committee Members<br /></div><dl>");
	
	var i = 0, aline = new Array();
	while (i in pwyapwy) {
		aline = pwyapwy[i].split("|");
		document.write("<dt class=\"committee\">" + "<a href=\"#" + i +"\" class=\"intext\">" + aline[0] + "</a></dt><dd>" + aline[1] + "</dd></dl>");
		i++;
	}
}
