/*
	The layout of a publication is as follows
	Title|Description|Price|Publisher|Available from
*/
p = new Array();
p[0]="Lampeter Walks|Printed in both Welsh and English this book contains 15 walks of varying length (between 1.5 miles to 8 miles).<br/>The walks are grouped into 4 sections covering Riverside walks, Iron Age Hill Fort walks, Cwmann walks and Upper Forest walks.|4.95|The Ramblers' Association, Lampeter Group|";

function showPublication() {
	var i=0, aLine = new Array();
	
	document.write("<h1 class=\"walks\">Publications</h1><hr />");
	
	if (p.length == 0) {
		document.write("<dl><dt>There are no current publications</dt></dl>");
		return;
	}
	while (i in p) {
		aLine = p[i].split("|");
		document.write("<h3 class=\"walks\">" + aLine[0] + "</h3>");
		if (aLine[1] != "") {
			document.write("<dl><dt>Description:</dt><dd>" + aLine[1] + "</dd>");
		}
		if (aLine[2] != "") {
			document.write("<dt>Price:</dt><dd>&pound;" + aLine[2] + "</dd>");
		}
		if (aLine[3] != "") {
			document.write("<dt>Publisher:</dt><dd>" + aLine[3] +"</dd>");
		}
		if (aLine[4] != "") {
			document.write("<dt>Available from:</dt><dd>" + aLine[4] + "</dd>");
		}
		document.write("</dl><a class=\"walks\" href=\"#\" name=\"top\">^ Top</a>");
		i++;
	}
}
