// Notification URL en cours

function notifyURL() {
	var location = document.location;
	var execution_time = document.getElementById('execution_time').value;

if (window.XMLHttpRequest) {
 		req = new XMLHttpRequest();
		if (req.overrideMimeType) {
			req.overrideMimeType('text/xml');
		}
	} 
	else if (window.ActiveXObject) {
		try {
			req = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			try {
				req = new ActiveXObject("Microsoft.XMLHTTP");
			} 
			catch (e) {}
		}
	}

	req.open("POST", "../_content/_ajax/notify_url.php", true); 
	req.setRequestHeader('Content-Type','application/x-www-form-urlencoded; Charset=iso-8859-1');
	if(location != '' && execution_time != '') {
		req.send("location="+location+"&execution_time="+execution_time);
	}
}
setTimeout("notifyURL();",1000);