/* Ajax */
function ajax() {
	var IS_IE = document.all && window.ActiveXObject &&  navigator.userAgent.toLowerCase().indexOf("msie") > -1 ;   
	var  IS_GECKO = document.implementation && document.implementation.createDocument  && window.XMLHttpRequest && true;    
	if (IS_GECKO) {
		http = new XMLHttpRequest();
	}
	else if(IS_IE) {
		http= new ActiveXObject("Microsoft.XMLHTTP");
	}
}

/* Maillist Ekle */
function mailekle(adres){
	ajax();
	document.getElementById('mailblok').innerHTML="<img src='images/loading.gif' alt='' />";

	http.open("get", "maillist.php?adres="+adres);
	http.onreadystatechange =function(){
		if(http.readyState== 4){
			alert(http.responseText);
			document.getElementById('madres').value='';
			document.getElementById('mailblok').innerHTML='<img style="cursor:pointer" onclick="javascript:mailekle(document.getElementById(\'madres\').value)" src="images/gonder.png" alt="Gönder" width="17" height="15" border="0" />';
		}
	}
	http.send(null);
}