function redirectPage(url,useQueryString,replaceHistory){	if(url!="" && url!=null){		url = (useQueryString == true || useQueryString == 'true') ? url + location.search : url;		if(replaceHistory == true || replaceHistory == 'true'){			location.replace(url);		}else{			location.href =  url;		}	}else{		location.href = "http://www.actingonaids.org"; //Default to redirect to homepage	}}