// JavaScript Document

// JavaScript Document
	function fromFlashNav(strWhichURL)
	{	
		var strMasterPath = "http://simmonsinc.com/home/regions";
		strMasterPath = "";

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


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


	}

function unScramble(eMail1,eMail2,linkText,subjectText,statusText){
var a,b,c,d,e;a=eMail1;c=linkText;b=eMail2.substring(0,eMail2.length-5);
if(subjectText!=""){d="?subject="+escape(subjectText);}else{d="";}
if(statusText!=""){e=" onMouseOver=\"top.status=\'"+statusText+ 
"\'\;return true\;\" onMouseOut=\"top.status=\'\'\;return true\;\"";}else{e="";}
document.write("<A HREF=\"mai"+"lto:"+a+"@"+b+d+"\""+e+">"+c+"</A>");}
