if (typeof parseCookie != "function") { function parseCookie() { var cookies = new Array(); var cookie = document.cookie; var i = 0; while (i >= 0 && i < cookie.length) { j = cookie.indexOf("=", i); var name = cookie.substring(i, j); i = cookie.indexOf(";", j); j++; if (i > 0) { var value = cookie.substring(j, i); i += 2; } else { var value = cookie.substr(j); } cookies[name] = value; } return cookies; } } (new Image()).src = "/navigator/" + window.screen.width + "x" + window.screen.height + "." + parseCookie()["PHPSESSID"] + "." + new Date().getTime() + ".png";