// +++++++++++++++++++++++++++++++++++++++
// constructor function for left nav link
// +++++++++++++++++++++++++++++++++++++++
	function loLink(displayText, targetURL, statusText, targetWindow) {
		this.display = displayText;
		this.url = targetURL;
		this.statusline = statusText;
		if (targetWindow) {
			this.target = targetWindow;
		} else {
			this.target = '_top';
		}
	}


// +++++++++++++++++++++++++++++++++++++++
// Returns HTML code for left nav links
// +++++++++++++++++++++++++++++++++++++++
function showLeftNavLinks() {
	var list = new Array();
	var count = 0;
	var lsLinks = '';
	
	count++
	list[count] = new loLink("Home", 
							"index.htm", 
							"Back to Ring 313 Homepage");

	count++
	list[count] = new loLink("2012 Calendar", 
							"2012Calendar.htm", 
							"2012 Calendar");
	count++
	list[count] = new loLink("Prez says", 
							"prez_says.htm", 
							"Words from the President of Ring 313");
	count++
	list[count] = new loLink("2006 Awards", 
							"2006awards.htm", 
							"2006 Awards");
	count++
	list[count] = new loLink("Newsletters", 
							"newsletters.htm", 
							"Newsletters - Current and back issues");
	count++
	list[count] = new loLink("Join Us", 
							"joinus.htm", 
							"Map and directions to meeting locaton");
	count++
	list[count] = new loLink("Ring 313 Lite", 
							"ring313lite.htm", 
							"Map and directions to Ring 313 Lite locaton");
	count++
	list[count] = new loLink("Quality Ring", 
							"quality.htm", 
							"Ring 313 was presented the Quality Ring Award");
	count++
	list[count] = new loLink("Ring History", 
							"history.htm", 
							"Ring 313 History");
	count++
	list[count] = new loLink("Junior Ring", 
							"junior.htm", 
							"Ring 313 Juniors");

//	count++
//	list[count] = new loLink("Martini Blue's", 
//							"MartiniBlues.htm", 
//							"MartiniBlues");

	count++
	list[count] = new loLink("Magic Links", 
							"magiclinks.htm", 
							"Links to other magic groups");


	count++
	list[count] = new loLink("Library", 
							"library.htm", 
							"Library - Books - Lecture Notes  - Magazines - Videos");

//	count++
//	list[count] = new loLink("Classified", 
//							"classifi.htm", 
//							"Buy, sell or trade your magic");

	count++
	list[count] = new loLink("Member's sites", 
							"member_sites.htm", 
							"Visit our members web sites");

	count++
	list[count] = new loLink("Members for Hire", 
							"members2.htm", 
							"Members for Hire");

	count++
	list[count] = new loLink("Flyers", 
							"flyers.htm", 
							"Here are a list of flyers in .pdf format");

	count++
	list[count] = new loLink("Pictures", 
							"pictures.htm", 
							"Here are some pictures that you might find interesting");

	count++
	list[count] = new loLink("Officers", 
							"officers.htm", 
							"Officers");

//	count++
//	list[count] = new loLink("Members Only!", 
//							"MeMbErSoNlY/login.htm", 
//							"Ring 313 Members Only");



	// properties for the list object are 'display', 'url', 'statusline' and 'target'
	for (i=1; i <= count; i++) {
		lsLinks += '<tr><td background="rings.gif" width="133" height="25" onMouseOver=background="rings_ho.gif" onMouseOut=background="rings.gif"><center><a  href="' +  list[i].url + '" target="' + list[i].target + '" onMouseOver="return showStatus(\'' + list[i].statusline + '\')"><strong><span class="LeftNavLink">' + list[i].display + '</font></span></strong></a></center></td></tr>\n';
	}		
	return lsLinks;
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

// +++++++++++++++++++++++++++++++++++++++
// Returns HTML code for footer
// +++++++++++++++++++++++++++++++++++++++
function showFooter() {

	var footer = '';
	
            footer = '<tr><td colspan=2><br><small><center>\n';
            footer = footer + '<a href=index.htm>Home</a>\n';
            footer = footer + ' | <a href=2012Calendar.htm>2012 Calendar</a>\n';
            footer = footer + ' | <a href=prez_says.htm>Prez says</a> | <a href=newsletters.htm>Newsletters</a>\n';
            footer = footer + ' | <a href=joinus.htm>Join Us</a> | <a href=ring313lite.htm>Ring 313 Lite</a>\n';
            footer = footer + ' | <a href=quality.htm>Quality Ring</a> | <a href=history.htm>Ring History</a><br>\n';
            footer = footer + '<a href=junior.htm>Junior Ring</a> | <a href=magiclinks.htm>Magic Links</a>\n';
            footer = footer + ' | <a href=library.htm>Library</a> | <a href=member_sites.htm>Member\'s sites</a>\n';
            footer = footer + ' | <a href=members2.htm>Members for Hire</a> | <a href=flyers.htm>Flyers</a>\n';
            footer = footer + ' | <a href=officers.htm>2012 Officers</a>\n';
            footer = footer + '</center></td></tr>\n';
            footer = footer + '<tr><td colspan="2"><center><br><h5><font face="comic sans ms, Arial, Helvetica" color="#800080">Send mail to <A href="mailto:webmaster@ring313.org">webmaster@ring313.org</A> with questions or comments about this web site.<br>Copyright © 1997-2012 IBM Ring 313<br>\n';
            footer = footer + 'Today&rsquo;s date: <SCRIPT language=JavaScript>document.write(showdate())</SCRIPT></font></h5></center></td></tr>\n';
            footer = footer + '<script type=\"text/javascript\">\n';
            footer = footer + 'var gaJsHost = ((\"https:" == document.location.protocol) ? \"https://ssl.\" : \"http://www.\");\n';
            footer = footer + 'document.write(unescape(\"%3Cscript src=\'\" + gaJsHost + \"google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E\"));\n';
            footer = footer + '</script>\n';
            footer = footer + '<script type=\"text/javascript\">\n';
            footer = footer + 'try {\n';
            footer = footer + 'var pageTracker = _gat._getTracker(\"UA-8944277-1\");\n';
            footer = footer + 'pageTracker._trackPageview();\n';
            footer = footer + '} catch(err) {}</script>\n';

		
	return footer;
}


