// All material copyright 2009
// Updated 2/10/2010 by Bob Dupre

function begSection(bkg) {
	document.write('<tr><td align="center" valign="center" bgcolor="' + bkg + '">');
}

function endSection(bkg) {
	document.write('</td></tr>');
	document.write('<tr><td height="3" bgcolor="' + bkg + '"></td></tr>');
}

function writeLink(url,text,altxt,bnew) {
	if (bnew) {document.write('<span class="redNote">*</span>');}
	document.write('<a href="' + url + '" title="' + altxt +'">' + text + '</a><br>');
}

function writeLinks() {
	var strBkg = new Array();
	strBkg[0] = "#FFFFFF";
	strBkg[1] = "#EEEEEE";
	var iBkg = 1;
	document.write('<table width="98" border="0">');
	begSection(strBkg[iBkg]);
		writeLink("index.htm","HftH Home","Head for the Hills 2010",false);
	endSection(strBkg[0]);
	// iBkg = 1-iBkg;
	//  begSection(strBkg[iBkg]);
	// 	writeLink("pdf_files.htm","Registration","Registration Form for 2009",false);
	// 	writeLink("pdf_files.htm","Financial Aid","Financial Aid Form for 2009",false);
	// 	writeLink("pdf_files.htm","Name Badge","Print &amp; Color Your Own Name Tag",true);
	// endSection(strBkg[0]);
	iBkg = 1-iBkg;
	begSection(strBkg[iBkg]);
		writeLink("video.htm","The Video","Head for the Hills the Video",false);
	endSection(strBkg[0]);
	iBkg = 1-iBkg;
	begSection(strBkg[iBkg]);
		writeLink("cdss_article_1.htm","CDSS Article","Article from the CDSS News as HTML",false);
	endSection(strBkg[0]);
	// iBkg = 1-iBkg;
	// begSection(strBkg[iBkg]);
	//  	writeLink("pdf_files.htm","2008 Schedule","Schedule and List of Workshops from 2008",false);
	// endSection(strBkg[0]);
	iBkg = 1-iBkg;
	begSection(strBkg[iBkg]);
		document.write('Photos<br>');
		writeLink("photos2008-1.htm","2008","Photos from Head for the Hills 2008",false);
		writeLink("photos2007.htm","2007","Photos from Head for the Hills 2007",false);
		writeLink("photos2006.htm","2006","Photos from Head for the Hills 2006",false);
		writeLink("photos2005.htm","2005","Photos from Head for the Hills 2005",false);
	endSection(strBkg[0]);
	iBkg = 1-iBkg;
	begSection(strBkg[iBkg]);
		document.write('Directions<br>');
		writeLink("hfth_directions.htm","Way In","Directions to Camp Harlam, Kresgeville,PA",false);
		writeLink("hfth_get_out.htm","Way Out","Directions FROM Camp Harlam",false);
	endSection(strBkg[0]);
	iBkg = 1-iBkg;
	begSection(strBkg[iBkg]);
		writeLink("http://www.princetoncountrydancers.org","PCD Home","Princeton Country Dancers Web Site",false);
	endSection(strBkg[0]);
	// iBkg = 1-iBkg;
	// begSection(strBkg[iBkg]);
	// document.write('<span class="redNote">*New as of 10/20/2009</span>');
	// endSection(strBkg[0]);
	document.write('</table>');
}