function insSectionBreadcrumb(sSectionHome,sSectionName) {
	//Usage Example:
	//  sSectionHome = home page file name
	//  sSectionName = section title
	//  insSectionBreadcrumb("legacy.html","Preserving Our Legacy");
				
	var sLoc = document.URL;
	var iLastSlash = sLoc.lastIndexOf("/");
	var sLoc = sLoc.substr(iLastSlash+1);
	if (sLoc == sSectionHome)
		document.write("&rsaquo; " + sSectionName);
	else
		document.write("&rsaquo; <a href='/bcparks/"+sSectionHome+"'>"+sSectionName+"</a>");
}