function changeForm(choice) {
	//document.getElementById("realform").innerHTML="";
	url = "changeSearch.php?form="+choice;
	sendRequest(url,"realform");
	displayForm(0);
}

function displayForm(i) {
	if (i > 5) {
		console.innerHTML="Timed out. Please check with system administrator.";
	}
	else {
		ready = getReadyState();
		if (ready) {
			result=getResults();
			console.innerHTML=result;
		}
		else {
			i++;
			command = "displayForm("+i+")";
			setTimeout(command,500);
		}
	}
}
