// JavaScript Document
	function fromFlashNav(strWhichURL)
	{	
		strMasterPath = "";
		if(strWhichURL == "home")
			window.location = strMasterPath + "index.html";
		if(strWhichURL == "qualifications")
			window.location = strMasterPath + "qualificiations.html";
		if(strWhichURL == "contact")
			window.location = strMasterPath + "contact.html";
		if(strWhichURL == "services")
			window.location = strMasterPath + "services.html";
		if(strWhichURL == "reports")
			window.location = strMasterPath + "reports_research.html";
		if(strWhichURL == "surveys")
			window.location = strMasterPath + "surveys_instruments.html";
		if(strWhichURL == "clients")
			window.location = strMasterPath + "clients.html";
	}
