/**
 * @author ksturgill
 * Sets the Correct Location Information when a link is clicked.
 */
	
	function updateLocation(strLocation)
		{	
			if (strLocation == "PHX")
			{
			    document.getElementById('titleLi').innerHTML = "Phoenix Corporate Service Center";
				document.getElementById('streetLi').innerHTML = "2400 West Dunlap Avenue, Suite 250";
				document.getElementById('cityStateZipLi').innerHTML = "Phoenix, Arizona 85021";
				document.getElementById('telephoneNumberLi').innerHTML = "602-249-3582";
				document.getElementById('tollFreeNumberLi').innerHTML = "800-474-3485 Toll Free";
				document.getElementById('faxNumberLi').innerHTML = "602-249-3795 Fax";
				document.getElementById('businessHoursLi').innerHTML = "Business Hours Mon-Fri 8:30am-5:00pm";
				$('#mapContainer').html("<img src='images/locationImages/SSAPHX.png' />");
			}
			else if (strLocation == "ABQ")
			{
			    document.getElementById('titleLi').innerHTML = "Albuquerque Service Center";
				document.getElementById('streetLi').innerHTML = "2300 Buena Vista SE suite 110A";
				document.getElementById('cityStateZipLi').innerHTML = "Albuquerque, NM 87106";
				document.getElementById('telephoneNumberLi').innerHTML = "505-265-8422";
				document.getElementById('tollFreeNumberLi').innerHTML = "800-432-6636 Toll Free";
				document.getElementById('faxNumberLi').innerHTML = "505-266-9358 Fax";
				document.getElementById('businessHoursLi').innerHTML = "Telephone Business Hours Mon-Fri 7:30am-4:30pm";
				$('#mapContainer').html("All services for the NM Sheet Metal Workers Health (SMWIA Local 49 Family Health Plan) and DCP Plans will be serviced from the Phoenix Service Center beginning on May 14, 2010. Please direct all correspondence, COBRA/Retiree Medical premiums, appeals, etc. to the Phoenix Office on and after May 14, 2010.  Please direct paper documents to the Phoenix Office but you can still reach us via the Albuquerque phone and fax numbers.");
			}
		}
