//
// Javascript files (client-side) containing common functions used by web pages for
// COWLEY HILL FREE CHURCH (BAPTIST), BOREHAMWOOD
// Author: John Armstrong

// This script should be included in the main pages using the following syntax:
//	<SCRIPT LANGUAGE="JavaScript" SRC="chfc.js">
//	</SCRIPT>

// ============================================
// The following code is always executed, since it is not part of a function
//

//	Define structures to define the menus
//		menuurl[] = Relative URLs of the web pages
//		menuname[] = Desciption shown in the menu

var dateposted="4th July 2007";

menuname = new Array (
	"Introduction",
	"Ministries",
	"Youth Work",
	"How To Find Us",
	"Distinctives",
	"Brochure"
	);

menuurl = new Array (
	"./index.html",
	"./chfcministries.html",
	"./chfcyouth.html",
	"./chfclocation.html",
	"./chfcdistinctives.html",
	"./chfcbrochure.html"
	);

var urlTime = menuurl[0] + "#meetings";
var urlContact = menuurl[0] + "#contact";

pageheader = new Array (
	"Introduction",
	"Ministries",
	"Meetings For Children And Teenagers",
	"How To Find Us",
	"Distinctives",
	"Our Current Brochure"
	);

// ===============================================

// Function to write the HTML for the header details
// Call syntax:
//	   	writeheader(n);
//  Where:
//		n = menu number to build.  This is 0-based (i.e. index to menu arrays).
	
function writeheader (p_item) {
	var menwidth=200;
	var restwidth = screen.width - menwidth - 60;
	
	document.writeln("<TABLE BORDER=0 cellspacing=0 cellpadding=0 WIDTH='100%'>");
	document.writeln("<TR>");
	document.writeln("<TD align=left>");
	document.writeln("<IMG SRC='chfc_left.jpg'>");
	document.writeln("</TD>");
	document.writeln("<TD align=right>");
	document.writeln("<IMG SRC='chfc_right.jpg'>");
	document.writeln("</TD></TR>");
	document.writeln("</TABLE>");


	document.writeln("<TABLE height='100%'>");
	document.writeln("<TR VALIGN='TOP'>");
	document.writeln("<TD >");
	document.writeln("<DIV>");
	document.writeln("<TABLE WIDTH='",menwidth,"' BORDER=5 bgcolor=#8080ff bordercolor=#004080 cellspacing=3 cellpadding=3>");
	document.writeln("<TR>");
	document.writeln("<TD ALIGN=CENTER>");

	for (var i=0;i<menuname.length;i++) {
		if (i==p_item) {
			document.writeln("   <SPAN class=menuitemselected>",menuname[i],"</SPAN>");
		}
		else {
			document.writeln("   <A class=menuitemnormal HREF='",menuurl[i],"'>",menuname[i],"</A>");
		}
		if (i!=menuname.length - 1) {
			document.writeln("</TD></TR><TR><TD ALIGN=CENTER>");
		}
	}

	document.writeln("</TD></TR>");
	document.writeln("</TABLE>");
	document.writeln("</DIV>");
	document.writeln("<BR><DIV>");
	document.writeln("<CENTER><TABLE><TR><TD ALIGN=CENTER>");
	document.writeln("<A class=smallmenuitem HREF='",urlTime,"'>Times Of Meetings</A>");
	document.writeln("</TD></TR><TR><TD ALIGN=CENTER>");
	document.writeln("<A class=smallmenuitem HREF='",urlContact,"'>Contact Us</A>");
	document.writeln("</TD></TR></TABLE>");
	document.writeln("</TD>");
	document.writeln("<TD width=",restwidth,"' bgcolor=#c0c0ff>");
//	document.writeln("<TD bgcolor=#c0c0ff>");
	document.writeln("<DIV class=main>");
	document.write("<TABLE cellpadding=3 width=" + restwidth + "><TR><TD><H1>" + pageheader[p_item] + "</H1></TD><TD ALIGN=right>&nbsp;</TD></TR></TABLE>");
	document.writeln("</DIV><DIV>"); 
}

function writefooter () {
//	document.writeln("<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>");
//	document.writeln("<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>");
//	document.writeln("<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>");
//	document.writeln("<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>");
//	document.writeln("<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>&nbsp;");
	document.writeln("</DIV>");
	document.writeln("</TD></TR>");
	document.writeln("</TABLE>");
	document.writeln("<DIV class=footer>");
	document.writeln("This web site was last updated on ",dateposted,".   ");
	document.writeln("Please feel free to submit any comments to the <A class=footerurl HREF='mailto:admin@cowleyhill.org.uk'>Web Page Designer</A>.<BR>");
	document.writeln("We are very grateful to <A HREF='http://www.grace.org.uk'><IMG SRC='gracenet.gif' ALIGN=ABSMIDDLE></A> for kindly hosting these pages.<BR>");
	document.writeln("</DIV>");
}
