function ajaxFunction(){
	var ajaxRequest;  // The variable that makes Ajax possible!
	 															
	try{
		// Opera 8.0+, Firefox, Safari
		ajaxRequest = new XMLHttpRequest();
	} catch (e){  											
		// Internet Explorer Browsers
		try{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				// Something went wrong
				alert("Your browser broke!");
				return false;
			}
		}
	}
	return(ajaxRequest);
}

var http = ajaxFunction();
 
function sende(text) {
     http.open('get', 'ajax_answer_wordlist.php?action='+text);
     http.onreadystatechange = handleResponse;
     http.send(null);
}
 
function handleResponse() {
     if(http.readyState == 4){
          var response = http.responseText;
//		  document.writeln(response);
   		  document.getElementById("answer").innerHTML=response;

     }
}


