
var info= "data=SCREEN:"+screen.width+"x"+screen.height;
numPlugins = navigator.plugins.length;
var output="";
if($.browser.msie)
{
   //output+=detectQuickTime();
   output+=detectFlash();
   output+=detectDirector();
   //output+=detectWindowsMedia();
   output+=detectReal(); 
}
else
{
for (i = 0; i < numPlugins; i++) {
    plugin = navigator.plugins[i];
    output+=plugin.name;
    output+=plugin.filename;
    //output+=plugin.description;
    numTypes = plugin.length;
    for (j = 0; j < numTypes; j++) {
        mimetype = plugin[j];
        if (mimetype) {
            enabled = "No";
            enabledPlugin = mimetype.enabledPlugin;
            if (enabledPlugin && (enabledPlugin.name == plugin.name)) enabled = "Yes";
            output+=mimetype.type;
            //output+=mimetype.description;
            output+=mimetype.suffixes;
            output+=enabled;
        }
    }
} 
}
info+="  "+output.length+" PLUGINS \n USER AGENT: "+navigator.userAgent+output ;
      
jQuery.post(
  '../ajax.php',
  info
);
try{ console.log(info); } catch(e){}

