// JavaScript Document
	function fromFlashNav(strWhichURL)
	{	
		var strMasterPath = "http://www.jbcoxwell.com/";

		if(strWhichURL == "about")
			window.location = strMasterPath + "about_jb_coxwell.html";
		if(strWhichURL == "home")
			window.location = strMasterPath + "index.php?intro=visited";
		if(strWhichURL == "contact")
			window.location = strMasterPath + "contact.html";
		if(strWhichURL == "design")
			window.location = strMasterPath + "design.html";
		if(strWhichURL == "disaster")
			window.location = strMasterPath + "coxwell_disaster_services.html";
		if(strWhichURL == "construction")
			window.location = strMasterPath + "construction_services.html";
		if(strWhichURL == "design_site")
			window.location = "http://www.jbcgai.com";
		if(strWhichURL == "community")
			window.location = strMasterPath + "about_community.html";
		if(strWhichURL == "construction_services")
			window.location = strMasterPath + "construction_services.html";
		if(strWhichURL == "construction_selected")
			window.location = strMasterPath + "construction_portfolio.html";
		if(strWhichURL == "construction_gallery")
			window.location = strMasterPath + "wordpress/?pp_album=main";
		if(strWhichURL == "photo_gallery")
			window.location = strMasterPath + "wordpress/?pp_album=main";
		if(strWhichURL == "construction_clients")
			window.location = strMasterPath + "construction_clients.html";
		if(strWhichURL == "disaster_overview")
			window.location = strMasterPath + "coxwell_disaster_services.html";
		if(strWhichURL == "disaster_response")
			window.location = strMasterPath + "coxwell_disaster_response_recovery.html";
		if(strWhichURL == "disaster_qualifications")
			window.location = strMasterPath + "coxwell_disaster_services_qualificiations.html";
		if(strWhichURL == "disaster_readiness")
			window.location = strMasterPath + "coxwell_disaster_readiness_audit.html";
		if(strWhichURL == "disaster_clients")
			window.location = strMasterPath + "coxwell_disaster_services_clients.html";
		if(strWhichURL == "disaster_preparedness")
			window.location = strMasterPath + "coxwell_disaster_preparedness_services.html";
		if(strWhichURL == "disaster_subcontract")
			window.location = strMasterPath + "coxwell_disaster_services_contractor.html";
			
		if(strWhichURL == "about_overview")
			window.location = strMasterPath + "about_jb_coxwell.html";
		if(strWhichURL == "about_safety")
			window.location = strMasterPath + "about_safety.html";
		if(strWhichURL == "about_leadership")
			window.location = strMasterPath + "about_leadership.html";
		if(strWhichURL == "contact")
			window.location = strMasterPath + "contact.html";
		if(strWhichURL == "employment")
			window.location = strMasterPath + "employment.html";
		if(strWhichURL == "news")
			window.location = strMasterPath + "wordpress";
		if(strWhichURL == "intro")
			window.location = strMasterPath + "intro.php";
		if(strWhichURL == "skip")
			window.location = strMasterPath + "index.php?intro=visited";
		if(strWhichURL == "skip_always")
			window.location = strMasterPath + "index.php?intro=skip_always";

	}
