/*
	HealthPartners 2010
	hp frequent-fitness-locations js
*/

function assembleQS() {
	
	var aString =  document.getElementById('street-address').value + "+" + document.getElementById	('city').value + "+" + document.getElementById('state').value + "+" + document.getElementById	('zip-code').value;
	
	aString = aString.replace(/ /g,"+"); 
	
	aString="http://www.healthpartnersmarketing.com/frequentFitnessLocations/FFLocations.html?addy=" + aString;

	window.open(aString,'fflocations','width=970,height=630');

}
