// BOTIKAJAX v 1.0

// Testigantza bialtzeko
function sendForm(zr,gaia,name,email,testimony) {
	var name = document.getElementById('name').value;
	if(name==jsname) { name=''; }
	var email = document.getElementById('email').value;
	if(email==jsemail) { email=''; }
	var testimony = document.getElementById('testimony').value;
	if(testimony==jstestimony) { testimony=''; }
  var xmlHttp;
  try { // Gehiengoarentzat
    xmlHttp=new XMLHttpRequest();
  }
  catch (e) { // Internet Explorer-entzat
    try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }
    catch (e) {
      try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
      catch (e) { alert("Your browser does not support AJAX!"); return false; }
    }
  }
	xmlHttp.onreadystatechange=function() {
		if(xmlHttp.readyState==4) {
			document.getElementById('idForm').innerHTML=parseScript(xmlHttp.responseText);
		}
	}
	xmlHttp.open("GET",jsroot+"botika/forms/testimoniesFormSend.php?zr="+zr+"&gaia="+gaia+"&name="+name+"&email="+email+"&testimony="+testimony,true);
	xmlHttp.send(null);
}

