// JavaScript Document

// JavaScript Document
	function fromFlashNav(strWhichURL)
	{	
		var strMasterPath = "http://simmonsinc.com/home/scripts/publiclistings.php?region=";

		if(strWhichURL == "northwest")
			window.location = strMasterPath + "Northwest";
		if(strWhichURL == "pacific")
			window.location = strMasterPath + "Pacific";
		if(strWhichURL == "southwest")
			window.location = strMasterPath + "southwest";
		if(strWhichURL == "intermountain")
			window.location = strMasterPath + "intermountain";
		if(strWhichURL == "midwest")
			window.location = strMasterPath + "midwest";
		if(strWhichURL == "southcentral")
			window.location = strMasterPath + "southcentral";


		if(strWhichURL == "greatlakes")
			window.location = strMasterPath + "great lakes";
		if(strWhichURL == "midatlantic")
			window.location = strMasterPath + "midatlantic";
		if(strWhichURL == "northeast")
			window.location = strMasterPath + "northeast";
		if(strWhichURL == "southeast")
			window.location = strMasterPath + "southeast";


	}
