var destination = "http://aouka.com/dev/stats/hit.php?account=aroma"; // Arguments du CORE destination += "&referer=" + escape(document.referrer) + "&page_url=" + escape(window.location) + "&page_title=" + escape(document.title); // Argument des Modules function display() { var result = "width=" + screen.width; result += "&height=" + screen.height; result += "&color=" + screen.colorDepth; return result; } destination += '&' + display(); function flash() { flash_versions = 10; var flash = new Object(); flash.installed=false; flash.version='0.0'; if (navigator.plugins && navigator.plugins.length) { for (x=0; x < navigator.plugins.length; x++) { if (navigator.plugins[x].name.indexOf('Shockwave Flash') != -1) { flash.version = navigator.plugins[x].description.split('Shockwave Flash ')[1]; flash.installed = true; break; } } } else if (window.ActiveXObject) { for (x = 2; x <= flash_versions; x++) { try { oFlash = eval("new ActiveXObject('ShockwaveFlash.ShockwaveFlash." + x + "');"); if(oFlash) { flash.installed = true; flash.version = x + '.0'; } } catch(e) {} } } return "flash_installed=" + flash.installed + "&flash_version=" + flash.version; } destination += '&' + flash(); function quicktime() { var quicktime = false; if (navigator.plugins && navigator.plugins.length) { for (x=0; x < navigator.plugins.length; x++) { if (navigator.plugins[x].name.indexOf('QuickTime') != -1) quicktime = true; } } else if (window.ActiveXObject) { try { oQT = eval("new ActiveXObject('QuickTimeCheckObject.QuickTimeCheck.1');"); if(oQT) quicktime = true; } catch(e) {} } return "quicktime=" + quicktime; } destination += '&' + quicktime(); document.write("");