
//****************************************************************
html_begin(title);

body_begin(body_bgcolor,body_background,masthead_bgcolor);
document.write("<a name=home></a>");
BestViewedMessage()  // Message to Old Browser Users

masthead(masthead_width,masthead1_width,masthead2_width,masthead3_width,
	masthead_bgcolor,
	masthead_image1,masthead_image1_alt,masthead_link1,masthead_image2,masthead_link2,
	masthead_highlight,
	masthead_text,masthead_fontsize,masthead_face,masthead_color,
	bordercolor,border,logoTopTextColor,logoLowerTextColor,logoBackColor)

menu_begin(menu_width,border,bordercolor)

// ------------------------------------------------------------------

var sectionnumber=0;
for (var i in columnwidths) {
	// start column

	column_begin(columnwidths[i]) //menubordercolor[i]);

	while (menusectionlocation[sectionnumber]==i) { 
		var columninfo=topiclinks[sectionnumber];
		
		// list items in column
		var columninfo=topiclinks[sectionnumber];
		
			document.write("<tr><td><table width=100% border=0");
			document.write(" bgcolor=#"+menubordercolor[sectionnumber]+">");
	
			section_contents(columninfo,
			spacing,
			itemindent,
			itemboldon,noteboldon,
			itemfontsize,notefontsize,
			itemfontface,notefontface,
			itemfontcolor,notefontcolor,
			cellbgcolor,itemhighlightcolor,
			sectionnumber,documentimage,formimage,webimage,noteimage,
			menupicturebgcolor,sectionnumber,upimage,menubordercolor[sectionnumber]);
			
			sectionnumber=sectionnumber+1;

			document.write("</table></td></tr>");

			document.write("<tr><td bgcolor=#"+body_bgcolor+" border=1 bordercolor=#ffffff><br></td></tr>");	

    }
	// end column
	column_end();
}

menu_end();
body_end();
html_end();

