/* -------------------------- */
/*   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 = document.getElementById('searchq').value;

// Set te random number to add to URL request
nocache = Math.random();
http.open('get', '/inc/ajax/livesearch.php?name='+encodeURI(searchq)+'&nocache = '+nocache);
http.onreadystatechange = searchNameqReply;
http.send(null);
}

function searchNameqReply() {
if(http.readyState == 4){
var response = http.responseText;
document.getElementById('search-result').innerHTML = response;
document.getElementById('search-result').style.display = "block";
}
}

function searchNameq2() {
searchq = document.getElementById('searchq').value;
top.location.href='/search/?name='+searchq+'';
http.send(null);
}

function downloadcounter() {
nocache = Math.random();
http.open('get', '/offlinecatalog/?download');
http.send(null);
}



