<!--
	/*
	 * Returns The Section/Directory Name
	 */
	function getSectionName() {
		var section = "";
		
		if (pathname.indexOf("/college/") > 0)
			section = "college";
		else if (pathname.indexOf("/loan/") > 0)
			section = "loan";
		else if (pathname.indexOf("/account/") > 0)
			section = "account";
		else if (pathname.indexOf("/schools/") > 0)
			section = "schools";
		else if (pathname.indexOf("/lenders/") > 0)
			section = "lenders";
		else if (pathname.indexOf("/guarantors/") > 0)
			section = "guarantors";
		else if (pathname.indexOf("/investors/") > 0)
			section = "investors";
		else if (pathname.indexOf("/felmac/") > 0)
			section = "felmac";
		else if (pathname.indexOf("/home/") > 0)
			section = "home";
		else if (pathname.indexOf("/shared/") > 0)
			section = "shared";
		else if (pathname.indexOf("/corporate/") > 0)
			section = "corporate";
			
		return section;
	}
	
	/*
	 * Returns The Section Color
	 */
	function getSectionColor(section) {
		var color = "";
			
		if (section == "college")
			color = "orange";
		else if ((section == "loan") || (section == "felmac"))
			color = "green";
		else if (section == "account")
			color = "blue";
		else if ((section == "schools") || (section == "lenders") || (section == "guarantors") || (section == "investors"))
			color = "purple";
		else if ((section == "home") || (section == "shared") || (section == "corporate"))
			color = "red";
			
		return color;
	}
	
	/*
	 * Loads The Shared-Content Version In The Same Window With The Same Section Color
	 */
	function sharedVersion(page) {
		var section = ((pathname.indexOf("/account/") > 0) ? "account" : ((pathname.indexOf("/college/") > 0) ? "college" : "loan"));
		var path = ((pathname.indexOf("/" + section + "/") > 0) ? pathname.substring(0, pathname.lastIndexOf("/" + section + "/")) : "/website/english");
		var name = ((page.indexOf("/") > 0) ? (page.substring(page.lastIndexOf('/') + 1)) : page);
		var isSecure = ((protocol == "https:") ? true : false);
		
		openPageBasedDocument((path + "/" + section + "/sections/general/pages/" + name), isSecure);
	}
//-->