/*---------------------------------------------------------------*/
/*---------------------------------------------------------------*/
/*--------------- DANIEL PEDERSEN @ FYNSKE MEDIER ---------------*/
/*------------------------- 04-04-2011 --------------------------*/
/*---------------------------------------------------------------*/
/*---------------------------------------------------------------*/
function zipcall(zipcode,element) {
	var xmlhttp;
	if (window.XMLHttpRequest) {
		xmlhttp = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	} else {
		alert("Opdater venligst din browser...");
	}
	xmlhttp.onreadystatechange = function() {
		if(xmlhttp.readyState == 4) {
			element.value = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","/calls/zipcall.call.php?zipcode="+zipcode,true);
	xmlhttp.send(null);
}
/*---------------------------------------------------------------*/
/*------------------------- END OF FILE -------------------------*/
/*---------------------------------------------------------------*/
