var xmlhttp=false; /*@cc_on @*/ /*@if (@_jscript_version >= 5) // JScript gives us Conditional compilation, we can cope with old IE versions. // and security blocked creation of the objects. try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { xmlhttp = false; } } @end @*/ if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp = new XMLHttpRequest(); } function onul() { xmlhttp.open("GET", "/hits.php?w=" + screen.width + "&h=" + screen.height,true); xmlhttp.onreadystatechange=function() { } xmlhttp.send(null) } function time() { xmlhttp.open("GET", "/time.php?t=1184338233",true); xmlhttp.onreadystatechange=function() { } xmlhttp.send(null) } function time2(id) { xmlhttp.open("GET", "/time2.php?t=1184338233&i=" + id,true); xmlhttp.onreadystatechange=function() { } xmlhttp.send(null) } function upClicks(id) { xmlhttp.open("GET", "/clicks.php?l=" + id,true); xmlhttp.onreadystatechange=function() { } xmlhttp.send(null) }