﻿var xhr = getXmlHttpRequestObject();
   
function getXmlHttpRequestObject() {
	if (window.XMLHttpRequest) {
	    return new XMLHttpRequest();
	} else if(window.ActiveXObject) {
	    return new ActiveXObject("Microsoft.XMLHTTP");
	    }
     else {	
        alert("Ajax Search is not supported on this browser");
        }
}

function MainFunction() {
        var divLoading = document.getElementById('divMsg');
        document.getElementById('MailingListArabic1_txtJoin').style.display = 'none';
        document.getElementById('MailingListArabic1_btnJoin').style.display = 'none';
        divLoading.style.display='block';
        document.getElementById('imgLoading').style.display='inline';
        var msg = document.getElementById('msgLoading');
        msg.style.display='inline';
        msg.innerHTML = 'يتم التسجيل, الرّجاء الانتظار...'
	    if (xhr.readyState == 4 || xhr.readyState == 0) {
	        var str = escape(document.getElementById('MailingListArabic1_txtJoin').value);
	        xhr.open("GET", 'AddMemberAjaxArabic.aspx?Email=' + str, true);	
	        xhr.onreadystatechange = handleAjaxRequest;
	        xhr.send(null);
	        }
}

function handleAjaxRequest() {
    if (xhr.readyState == 4) {
        //document.getElementById('MailingList1_txtJoin').style.display = 'inline';
        document.getElementById('MailingListArabic1_btnJoin').style.display = 'inline';
        var str = xhr.responseText;
        if (str.length > 1)
        {
            document.getElementById('imgLoading').style.display='none';
            var msg = document.getElementById('msgLoading');
            msg.innerHTML = str;
            document.getElementById('btnReset').style.display='inline';
            document.getElementById('MailingListArabic1_btnJoin').style.display='none';
        }
    }
}
