<!--
	var spanCurrentPage = document.getElementById("spanCurrentPage");
	if (spanCurrentPage != null)
	{
		var prefix = "Currently Viewing:&nbsp;&nbsp;";
		var currentPage = "";
		switch (window.location.pathname.toLowerCase().replace("/flw/", ""))
		{
			case ("abilities.aspx"):
			{
				currentPage = "Corporate Abilities";
				break;
			}	
			case ("contact.aspx"):
			{
				currentPage = "Contact Options";
				break;
			}					
			case ("default.aspx"):
			{
				currentPage = "Home Page";
				break;
			}
			case ("solutions.aspx"):
			{
				currentPage = "IT Solutions";
				break;
			}			
			case ("programming.aspx"):
			{
				currentPage = "Programming Services";
				break;
			}
			default:
			{
				prefix = "";
				break;
			}
		}

		// Set the current page cue.
		spanCurrentPage.innerHTML = prefix + currentPage;
	}
-->