//Used in consumer/plans/recommend to track user answers
function getQueryString() {
	//return array of all query string pairs, eg. Q1=2, Q2=3
	return window.location.search.substring(1,window.location.search.length).split('&');
}
