/* -------------------------- */
/*   XMLHTTPRequest Enable    */
/* -------------------------- */
function createObject() {
var request_type;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
request_type = new ActiveXObject("Msxml2.XMLHTTP");
} else {
request_type = new XMLHttpRequest();
}
return request_type;
}

var http = createObject();

/* -------------------------- */
/*        SEARCH              */
/* -------------------------- */
function searchNameq() {
searchq = decodeURI(document.getElementById('searchq').value);
document.getElementById('msg').style.display = "block";
// Set te random number to add to URL request
nocache = Math.random();
http.open('get', 'insearch.php?name='+searchq+'&nocache = '+nocache);
http.onreadystatechange =  searchNameqReply;
http.send(null);
}
function searchNameqReply() {
if(http.readyState == 4){
if(http.status == 200) {
var response = http.responseText;
document.getElementById('search-result').innerHTML = response;
}
}
}
function searchCloseReply() {
$(document).ready(function(){
$("*:not(.resultdropdown)").click(function() {
$(".resultdropdown").html("");
});
});
}


