// JavaScript Document
/* -------------------------- */
/*   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() {
searchq = encodeURI(document.getElementById('add_adver').value);
searchq_adv = encodeURI(document.getElementById('advcode').options[document.getElementById('advcode').selectedIndex].value);
//document.getElementById('msg').innerHTML = "Поиск <strong>" + searchq+"";
// Set te random number to add to URL request
nocache = Math.random();
http.open('get', '../insearch.php?name='+searchq+'&nocache = '+nocache+'&advid='+searchq_adv);
http.onreadystatechange =  searchNameqReply;
document.getElementById('search-result').style.display = "block";
http.send(null);
}
function searchNameqReply() {
if(http.readyState == 4){
if (http.responseText.length > 0) {
var response = http.responseText;
document.getElementById('search-result').innerHTML = response;
} else {
document.getElementById('search-result').style.display = "none";
}
}
}
