var xmlHttp;
if (window.ActiveXObject){
	xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} else {
	xmlHttp = new XMLHttpRequest();
}

/*
function getFile(file){
	xmlHttp.open('get','admin/log.php?file='+file+'');
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
			if(xmlHttp.status == 200 || xmlHttp.status == 304){
			}
	
		}
	}
	xmlHttp.send(null);
}*/

function log(kind,file){
	alert(kind,file);
}
