function filteredGoto(url){
  if(url.indexOf('?') < 0) {
    if(url.indexOf('&') > -1) {
	url = url.replace(/\x26/,"?");
    }
  }
  location = url;
}
