//********************************************
function ShowEmailAddress(user, site){
        document.write(user + "@" + site);
}//function
//********************************************
function MailToLink(user, site){
        document.write("<A HREF=\"mail" + "to:" + user + "@" + site + "\">" + user + "@" + site + "</A>");
}//function
//********************************************
function ShortMailToLink(user, site){
        document.write("<A HREF=\"mail" + "to:" + user + "@" + site + "\">");
}//function

//********************************************
function NavBlock(siteHome){
	document.write("<table border='0' cellpadding='2' width='750' height='171' background='" + siteHome + "/resources/banner_bg.jpg'>");
	document.write("<tr align='center' class='navRow' height='110'>");
	document.write("<td colspan='3' class='topBannerText' align='left'><a style='color:white;' href='" + siteHome + "/story.html'><nobr>Alfred G. Villeneuve</nobr><br />"
		+ "An Algonquin Artist's Story</a></td>");
	document.write("</tr>");

	document.write("<tr align='center' class='navRow'>");
	document.write("<td><a class='navLink' href='" + siteHome + "/galleries.html'>Galleries</a></td>");
	document.write("<td><a class='navLink' href='" + siteHome + "/trad_teach.html'>Traditional Teachings</a></td>");
	document.write("<td><a class='navLink' href='" + siteHome + "/sunrise_ceremony.html'>Sunrise Ceremony</a></td>");
	document.write("</tr>");

	document.write("<tr align='center' class='navRow'>");
	document.write("<td><a class='navLink' href='" + siteHome + "/ocg.html'>On Communion Ground</a></td>");
	document.write("<td><a class='navLink' href='" + siteHome + "/the_local_show.html'>The Local Show</a></td>");
	document.write("<td><a class='navLink' href='" + siteHome + "/exhibitions.html'>Current Exhibitions</a></td>");
	document.write("</tr>");

//ThirtyOneDaysInAnIndianSummer

	document.write("</table>");
}//function

//********************************************
function FooterBlock(siteHome){
	var d = new Date();
	var curr_year = d.getYear() + 1900;

	var gMap = "http://maps.google.ca/maps?source=embed&f=q&hl=en&geocode=&q=11168+Hwy+60,+Golden+Lake,+Ontario&sll=45.61788,-77.290878&sspn=0.366924,0.892639&ie=UTF8&hq=&hnear=HWY+60,+North+Algona,+Renfrew+County,+Ontario+K0J+1X0&ll=45.584371,-77.255859&spn=0.075447,0.209255&z=13";

	document.write("<p class='copyRightText'><a target='_blank' href='" + gMap + "'>11168 Hwy 60, Golden Lake, Ontario</a> - By appointment/chance (613) 625-1313<br />"
			+ "&copy; 2003-" + curr_year + " / A.G. Villeneuve / All Rights Reserved / ");
	MailToLink('northwindgallery', 'yahoo.ca');		
	document.write("</p>");

} //function