



function doPageStart (pageName, doc)
{
	doc.write ('<HEAD><TITLE>'+pageName+'</TITLE></HEAD>');
	doc.write ('<BODY TOPMARGIN=5 LEFTMARGIN=20 >');
}


function doPageEnd (doc)
{
	doc.write ('<BR><HR><CENTER><FONT FACE="ARIAL" SIZE="2">'+
		'These pages are maintained by <A HREF="mailto:dave_m_moore@post2me.freeserve.co.uk">'+
		'<I>David Moore</I></A>.</FONT></CENTER>');

	doc.write ('</BODY>');

}


function doContactIntro (doc)
{

	doc.write ('<TABLE COLS="2" CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH="100%"><TR>'+
		'<TD BGCOLOR=#75ffffff><FONT FACE="ARIAL" SIZE="4">&nbsp<B><I>South East Orienteering Association (SEOA) and Club Contacts</I></B></FONT></TD>'+
		'<TD ALIGN="RIGHT" BGCOLOR=#75ffffff WIDTH="120" BACKGROUND="../images/fade.gif">&nbsp</TD>'+
		'</TR></TABLE><BR>');
	
	doc.write ('<FONT FACE="ARIAL" SIZE="2"><P ALIGN="CENTER">This page contains contact information for members of the SEOA Committee'+
		' followed by contact information for the chairman and secretary for each of the South East clubs.'+
		' If you would like to add, remove or update any of the current details, please <A HREF="mailto:dave_m_moore@post2me.freeserve.co.uk">email</A>'+
		' the information to me and I will make the appropriate adjustment.<BR></P></FONT>');




}



function doContactEntry (venue, club, doc)
{

	doc.write ('<CENTER><TABLE WIDTH=90% CELLSPACING=4 CELLPADDING=0 BORDER=0><TR>'+
		'<TD ROWSPAN=2 VALIGN=TOP WIDTH=15% ALIGN=RIGHT BACKGROUND="../images/fade2.gif">'+
		'<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD ALIGN=RIGHT BACKGROUND="">'+
		'<FONT FACE=ARIAL></FONT></TD><TD BACKGROUND="">&nbsp</TD></TR></TABLE></TD>'+
		'<TD><TABLE CELLSPACING=0 BORDER=0 WIDTH=100% COLS="2">'+
		'<TD ALIGN=LEFT VALIGN=TOP BGCOLOR=#75ffffff>&nbsp<FONT FACE=ARIAL SIZE="4">'+
		'<B><I>'+venue+'</I></B></FONT></TD>'+
		'');


	doc.write (''+
		'<TD ALIGN=RIGHT BGCOLOR=#75ffffff VALIGN=MIDDLE WIDTH=20%>'+
		'<FONT FACE=ARIAL SIZE="4">&nbsp</FONT><FONT FACE=ARIAL SIZE="3"><B><I>');


	getClubURL (club);
	if (clubURL != 'NOTFOUND')
	{
		doc.write ('<A HREF="');
		doc.write (clubURL);
		doc.write ('" TARGET="_top"><FONT FACE=ARIAL SIZE="3"><B><I>'+club+' Website</I></B></FONT></A>');
	}
	else
	{
		doc.write ('<FONT FACE=ARIAL SIZE="3"><B><I>'+club+'</I></B></FONT>');

	}

	doc.write ('&nbsp</I></B></FONT></TD>'+
		'</TD></TR><TR><TD HEIGHT=3></TD></TR>');

	doc.write ('<TR><TD COLSPAN=3><FONT SIZE="2" FACE=ARIAL>');

}


function endContactEntry (doc)
{
	doc.write ('</FONT></TD></TR></TABLE></TABLE></CENTER>');
}


function addContactInfo (heading, info, doc)
{
	if (heading != '')
		doc.write ('<B>'+heading+':</B> '+info+' ');
	else
		doc.write (info+' ');
}

