var strC='';

//str+='&r=' + escape(document.referrer);
strC+='id_contador=' + window.id_contador;
strC+='&url=' + escape(window.location.href);
strC+='&co_resolucion=' + screen.width+'x'+screen.height;
strC+='&co_titulo=' + escape(document.title);
strC+='&co_cpuclass=' + navigator.cpuClass;
strC+='&co_plataforma=' + navigator.platform;
strC+='&co_navegador=' + navigator.appName;

// si es mozilla o netscape hace el modo clasico, si es IE lo llama via ajax
var nav = navigator.appName;

if (nav != "Netscape") {
	strC+='&clrs=' + screen.colorDepth
}else {
	strC+='&clrs=' + screen.pixelDepth;
}

if(typeof(ip) != 'undefined'){
	strC+='&valip=' + ip;
}
	//alert('http://contadores2009.macalplataforma.cl/cuenta.asp?' + strC );
	
	document.open();
	document.write('<' + 'script type="text/javascript" src="cuenta.asp?' + strC + '"><' + '/script>');
	//http://contadores2009.macalplataforma.cl/cuenta.asp
	document.close();

