// Uniform Page Format
// Due to the limitation on technology we have on the website.  This is to save typing and to 
//     ensure consistency on all pages on this website.  Will prefer to use ColdFusion 
//	   when it's available.
// Purpose:  
//			 - All pages can look the same
//			 - Code can be reused


var table_width = 800;
var page_align = 'center';
var menu_bgcolor = "Navy";
var today = new Date();

// MENU array
var menu_index = 0;
MenuItems = new Array();
MenuItems[menu_index] = "MAIN|index.html"; menu_index = menu_index+1;
MenuItems[menu_index] = "EVENT CALENDAR|calendar.html"; menu_index = menu_index+1;
// MenuItems[menu_index] = "MEMBERSHIP|membership.html"; menu_index = menu_index+1;
MenuItems[menu_index] = "BOARD|board_2010.html"; menu_index = menu_index+1;
MenuItems[menu_index] = "ADVISORY|board_2010_advisors.html"; menu_index = menu_index+1;
MenuItems[menu_index] = "PAST PRESIDENTS|board_past_presidents.html"; menu_index = menu_index+1;
// MenuItems[menu_index] = "CONTACT US|contact_us.html";

// This function is to Start the page.  Including the require html tags.
function Header()
{
	// Meta Data Section
	document.write("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN'>");
	document.write("<meta name='Keywords' content='OCA, Chinese, American, Asian, Asians, Young Asian, Young Asians, STL, Saint Louis, St. Louis'>");
	document.write("<meta name='Description' content='OCA-STL Official Site'>");
	document.write("<meta name='Author' content='Eling Lam - eling.lam@gmail.com'>");

	// Required HTML start tags.
	document.write("<html>");
	document.write("<head>");
	
	// Title of the page.
	var current_pg = window.location.href;
	for(var i=0; i<= menu_index; i++)
	{
		var menu_item = new String(MenuItems[i]);
		var ind = menu_item.indexOf('|');
		var menu_title = menu_item.substring(0, ind);
		var menu_url = menu_item.substring(ind+1, menu_item.length);
		
		if (current_pg.indexOf(menu_url) > 0)
		{
			document.write("<title>OCA-STL Official Site | " + menu_title + "</title>");
			i = menu_index + 1;
		}
	}
	document.write("<title>OCA-STL Official Site</title>");
		
	// Common stylesheet for all pages
	document.write("<link rel='stylesheet' href='css/ocastl_style.css' type='text/css'>");
	document.write("</head>");
	
	// Logo	
	document.write("<table width='" + table_width + "' align='" + page_align + "' height='100%' border='0'><tr valign='top'><td height='100'>");
	document.write("<table class='header' width='100%' cellpadding='0' cellspacing='0' border='0'>");
	document.write("<tr>");
	document.write("<td width='10%'>");
	//document.write("<img src='images/ArchFlag.jpg' alt='' width='70' height='100' border='0'>");
	document.write("<img src='images/ocastl_logo_new.gif' alt='' width='150' height='100' border='0'>");
	document.write("</td>");
	document.write("<td height='100'>");
	document.write("<table height='75' width='100%' cellpadding='0' cellspacing='0' border='0'>");
	document.write("<tr>");
	document.write("<td class='date' valign='top'><a href='http://www.facebook.com/pages/OCA-STL/122337771946' target='_blank'><img src='images/facebookicon.png' alt='Join us on Facebook' title='Click here to join us on Facebook' width='20' height='20' border='0'/>&nbsp;&nbsp;</a><a href='http://twitter.com/ocastl' target='_blank'><img src='images/twittericon.png' alt='Follow us on Twitter' title='Click here to follow us on Twitter' width='20' height='20' border='0'/></td>");
	document.write("</tr>");
	document.write("<tr>");
	document.write("<td class='sologan'>&nbsp;EMBRACING THE HOPES AND ASPIRATIONS OF ASIAN PACIFIC AMERICANS</td>");
	document.write("</tr>");
	document.write("<tr><td>&nbsp;</td></tr>");
	document.write("<tr>");
	document.write("<td valign='bottom'>");
	document.write("<table height='100%' width='100%' cellpadding=0 border=0>");
	document.write("<tr valign='bottom'>");
	document.write("<td>&nbsp;&nbsp;</td>");
	
	// Menu
	document.write("<td>&nbsp;&nbsp;</td>");
	for(var i=0; i<= menu_index; i++)
	{
		var menu_item = new String(MenuItems[i]);
		var ind = menu_item.indexOf('|');
		var menu_title = menu_item.substring(0, ind);
		var menu_url = menu_item.substring(ind+1, menu_item.length);
		
		if (current_pg.indexOf(menu_url) > 0)
			document.write("<td align='center' valign='bottom'><a href='" + menu_url + "' class='menu_selected'>" + menu_title +"</a></td>");
		else
			document.write("<td align='center' valign='bottom'><a href='" + menu_url + "' class='menu'>" + menu_title +"</a></td>");
	}
	document.write("<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>");
	document.write("</tr>");
	document.write("</table>");
	document.write("</td>");
	document.write("</tr>");
	document.write("</table>");
	document.write("</td>");
	document.write("</tr>");
	document.write("</table>");
	document.write("</td>");
	document.write("</tr>");
	
	document.write("<tr valign='top'><td valign='top'>");
}

function Footer()
{
	document.write("</td></tr>");
	
	document.write("<tr valign='baseline'><td height='30' valign='baseline'>");
	// FOOTER table starts
	document.write("<table width='" + table_width + "' bgcolor='" + menu_bgcolor + "'>");
	document.write("<tr align='center'>");
	document.write("<td class='footer'>&copy; OCA-STL " + today.getYear() + "</td>");
	document.write("<td class='footer'><font color='Maroon'>&sect;</font></td>");
	document.write("<td class='footer'>Address: P.O. Box 4151, Chesterfield, MO 63006</td>");
	document.write("<td class='footer'><font color='Maroon'>&sect;</font></td>");
	document.write("<td class='footer'>Email: <a href='mailto:info@oca-stl.org' style='font-size:10pt; color:silver;' title='Click to send email to OCA-STL Chapter'>info@oca-stl.org</a></td>");
	
	/* var lastModified_Date = document.lastModified;
	lastModified_Date = lastModified_Date.substring(0, 10);
	document.write("<td class='footer'> Last Updated: " + lastModified_Date + "</td>");
	*/
	
	document.write("</tr></table>");
	// FOOTER table ends
	
	// Closing the end of the html file
	document.write("</td></tr></table>");
	document.write("</body></html>");
}
