/* 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('searchq').value);
//document.getElementById('msg').style.display = "block";
//document.getElementById('msg').innerHTML = "<small>Recherche : <strong>''" + searchq+"''</strong></small>";
// Set te random number to add to URL request
nocache = Math.random();
http.open('get', 'in-search.php?searchq='+searchq+'&nocache = '+nocache);
http.setRequestHeader('Content-Type','text/html; charset=utf-8');
http.onreadystatechange = searchNameqReply;
http.send(null);
}
function searchNameqReply() {
if(http.readyState == 4){
var response = http.responseText;
document.getElementById('search-result').innerHTML = response;
}
}

window.addEvent('domready', function(){
	var box = $('box');
	var fx = box.effects({duration: 1000, transition: Fx.Transitions.Quart.easeOut});
	
	$('save_button').addEvent('click', function() {
		//box.style.display="block";
		//box.setHTML('recherche terminée !');
		
		/* AJAX Request here... */
		searchNameq();
		
		fx.start({	
			}).chain(function() {
				this.start.delay(1000, this, {'opacity': 0});
			}).chain(function() {
				box.style.display="none";
				this.start.delay(0001, this, {'opacity': 1});
			});
			
		});
	}); 
	