﻿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", '../TLQatarAR/AddMemberAjaxArabic.aspx?Email=' + str, true);	
	        xhr.onreadystatechange = handleAjaxRequest;
	        xhr.send(null);
	        }
}


function handleAjaxRequest() {
    if (xhr.readyState == 4) {
        
        document.getElementById('MailingListArabic1_btnJoin').style.display = 'inline';
        var str = xhr.responseText;
        
        if (str.length > 0)
        {
            document.getElementById('imgLoading').style.display='none';
            var msg = document.getElementById('msgLoading');
            
            if ( str == '1')
              { 
              var email = document.getElementById('MailingListArabic1_txtJoin').value;
               
               window.location.href="NewsRegistrationArabic.aspx?pageid=446&Email=" + email //for Both IE and Fire fox
                }
                else{
                msg.innerHTML = str;
                }
            document.getElementById('btnReset').style.display='inline';
            document.getElementById('MailingListArabic1_btnJoin').style.display='none';
        }
        
    }
}
