1 2 3 4 5 6 7 8 9 10 11 |
function getAllInfos(url) { url += "?ver=1"; url += "&url=" + escape(location.href); url += "&ref=" + escape(document.referrer); url += "&ua=" + escape(navigator.userAgent); url += "&reso=" + escape(screen.width + "x" + screen.height); url += "&greu=" + escape(document.body.clientWidth + "x" + document.body.clientHeight); url += "&rand=" + escape(Math.random()); return url; } document.writeln("<img style=\"position:absolute;top:0px;\" src=\""+getAllInfos("http://stats.palmdrive.net/stats.gif")+"\">"); |