try {
	xmlhttp = new XMLHttpRequest();
} catch(ee) {
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch(e) {
		try {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch(E) {
			xmlhttp = false;
		}
	}
}

function estatistica(pagina, codConteudo, tipoConteudo, titulo){
	var args = estatistica.arguments.length;
	xmlhttp.open("POST", 'ajx_estatistica.asp', true);
	xmlhttp.onreadystatechange = function(){
		if (xmlhttp.readyState==4){
			t = xmlhttp.responseText;
			//alert(t);
			if (args == 3){
				//alert('ok');
			}
		}
	}
	xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	xmlhttp.send('codConteudo='+codConteudo+'&e_tipoConteudo='+tipoConteudo+'&titulo='+escape(titulo)+'&pagina='+pagina);
}
