/* ---------------------------- */
/* XMLHTTPRequest Enable */
/* ---------------------------- */
function createObject(){
    var request_type;
    var browser = navigator.appName;
    if (browser == "Microsoft Internet Explorer") {
        request_type = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else {
        request_type = new XMLHttpRequest();
    }
    return request_type;
}

var http = createObject();

/* -------------------------- */
/* SEARCH */
/* -------------------------- */
function searchNameq(){
    phone = encodeURI(document.getElementById('phone').value);
    document.getElementById('info').style.display = "block";
    document.getElementById('info').innerHTML = "در حال جستجوی مراکز مخابراتی <img src='../images/loader2.gif' width='16' height='16' alt='لطفا صبر کنید'/>";
    // Set te random number to add to URL request
    nocache = Math.random();
    http.open('get', 'search_phone.php?phone=' + phone + '&nocache = ' + nocache);
    http.onreadystatechange = searchNameqReply;
    http.send(null);
}

function searchNameqReply(){
    if (http.readyState == 4) {
        var response = http.responseText;
        document.getElementById('info').innerHTML = response;
    }
}
