/* XMLHttpRequest. */

var http = createRequestObject();
function createRequestObject() {
var xmlhttp=false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
// JScript gives us Conditional compilation, we can cope with old IE versions.
// and security blocked creation of the objects.
 try {
  xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
 } catch (e) {
  try {
   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (E) {
   xmlhttp = false;
  }
 }
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
	try {
		xmlhttp = new XMLHttpRequest();
	} catch (e) {
		xmlhttp=false;
	}
}
if (!xmlhttp && window.createRequest) {
	try {
		xmlhttp = window.createRequest();
	} catch (e) {
		xmlhttp=false;
	}
}
return xmlhttp;
}

/* BROCHURE COLLECT */

function collectBrochure() {

var naam = document.getElementById('naam').value;
var adres = document.getElementById('adres').value;
var postcode = document.getElementById('postcode').value;
var woonplaats = document.getElementById('woonplaats').value;
var telefoonnummer = document.getElementById('telefoonnummer').value;
var email = document.getElementById('email').value;
var plekken = document.getElementById('plekken').value;

if (document.getElementById('aanhef1').checked == 1) { 
var title = "1"; 
} else {
var title = "0";
}

http.open('POST', 'http://www.balinova.com/informatiemiddag/verwerk_brochure.php');
http.onreadystatechange = handleFormEmailnl;
http.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
http.send("title=" + title +  "&naam=" + naam + "&adres=" + adres + "&postcode=" + postcode + "&woonplaats=" + woonplaats + "&telefoonnummer=" + telefoonnummer + "&email=" + email + "&plekken=" + plekken);
}
	
/* FORM RESPONSE NEDERLANDS */	
	
function handleFormEmailnl() {

	if(http.readyState == 4) {
		var response = http.responseText;

		var result = response.indexOf("Bedankt");	
		var result2 = response.indexOf("formnaam");
		var result3 = response.indexOf("formadres");
		var result4 = response.indexOf("formpostcode");		
		var result5 = response.indexOf("formwoonplaats");
		var result6 = response.indexOf("formtelefoon");	
		var result7 = response.indexOf("formemail");
		var result8 = response.indexOf("formplekken");		

					
		if(result != -1) {
		document.getElementById('brochureresultaat10').innerHTML = "<br><br>Bedankt voor het invullen. U ontvangt z.s.m. onze nieuwste brochure gratis in uw brievenbus.<br>Mocht u dit niet ontvangen, neemt u dan contact op met Balinova t +31 (0)72 5119021.";
		document.getElementById('brochureresultaat20').style.display = "none";
		}
		else if(result2 != -1)
		{
		document.getElementById('naam').style.backgroundColor="#094be0";	
		document.getElementById('adres').style.backgroundColor="#12236b";	
		document.getElementById('postcode').style.backgroundColor="#12236b";	
		document.getElementById('woonplaats').style.backgroundColor="#12236b";				
		document.getElementById('telefoonnummer').style.backgroundColor="#12236b";	
		document.getElementById('email').style.backgroundColor="#12236b";	
		document.getElementById('plekken').style.backgroundColor="#12236b";			
		}
		else	if(result3 != -1) {
		document.getElementById('naam').style.backgroundColor="#12236b";	
		document.getElementById('adres').style.backgroundColor="#094be0";	
		document.getElementById('postcode').style.backgroundColor="#12236b";	
		document.getElementById('woonplaats').style.backgroundColor="#12236b";				
		document.getElementById('telefoonnummer').style.backgroundColor="#12236b";	
		document.getElementById('email').style.backgroundColor="#12236b";	
		document.getElementById('plekken').style.backgroundColor="#12236b";		
		}
		else if(result4 != -1) {
		document.getElementById('naam').style.backgroundColor="#12236b";	
		document.getElementById('adres').style.backgroundColor="#12236b";	
		document.getElementById('postcode').style.backgroundColor="#094be0";	
		document.getElementById('woonplaats').style.backgroundColor="#12236b";				
		document.getElementById('telefoonnummer').style.backgroundColor="#12236b";	
		document.getElementById('email').style.backgroundColor="#12236b";	
		document.getElementById('plekken').style.backgroundColor="#12236b";		
		}
		else if(result5 != -1) {
		document.getElementById('naam').style.backgroundColor="#12236b";	
		document.getElementById('adres').style.backgroundColor="#12236b";	
		document.getElementById('postcode').style.backgroundColor="#12236b";	
		document.getElementById('woonplaats').style.backgroundColor="#094be0";				
		document.getElementById('telefoonnummer').style.backgroundColor="#12236b";	
		document.getElementById('email').style.backgroundColor="#12236b";	
		document.getElementById('plekken').style.backgroundColor="#12236b";		
		}
		else if(result6 != -1) {
		document.getElementById('naam').style.backgroundColor="#12236b";	
		document.getElementById('adres').style.backgroundColor="#12236b";	
		document.getElementById('postcode').style.backgroundColor="#12236b";	
		document.getElementById('woonplaats').style.backgroundColor="#12236b";				
		document.getElementById('telefoonnummer').style.backgroundColor="#094be0";
		document.getElementById('email').style.backgroundColor="#12236b";	
		document.getElementById('plekken').style.backgroundColor="#12236b";		
		}
		else if(result7 != -1) {
		document.getElementById('naam').style.backgroundColor="#12236b";	
		document.getElementById('adres').style.backgroundColor="#12236b";	
		document.getElementById('postcode').style.backgroundColor="#12236b";	
		document.getElementById('woonplaats').style.backgroundColor="#12236b";				
		document.getElementById('telefoonnummer').style.backgroundColor="#12236b";	
		document.getElementById('email').style.backgroundColor="#094be0";
		document.getElementById('plekken').style.backgroundColor="#12236b";		
		}
		else if(result8 != -1) {
		document.getElementById('naam').style.backgroundColor="#12236b";	
		document.getElementById('adres').style.backgroundColor="#12236b";	
		document.getElementById('postcode').style.backgroundColor="#12236b";	
		document.getElementById('woonplaats').style.backgroundColor="#12236b";				
		document.getElementById('telefoonnummer').style.backgroundColor="#12236b";	
		document.getElementById('email').style.backgroundColor="#12236b";
		document.getElementById('plekken').style.backgroundColor="#094be0";		
		}		
				
	}
}

/* EINDE BROCHURE COLLECT */   
