/* -------------------------- */
/* GLOBAL VAR				  */
/* -------------------------- */
var nocache = 0;
var pageGlobal='none';
var idTask_global;
var idUser_global;

/* ---------------------------- */
/* 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();

function styledPopupClose() {
	nocache = Math.random();
	http.open('get', '/updateChat.php?step=1&nocache = '+nocache);
	http.onreadystatechange = outputterrr;
	http.send(null);
}
function outputterrr() {
	if(http.readyState == 4){
		document.getElementById('styled_popup').style.display = 'none';
		//var response = http.responseText;
		//document.getElementById('brrrr').innerHTML = response;
	}
}