/*=======================================================================================*\
|| ######################################################################################||
|| # vBstatistic 1.0.0 Preview Version © by PcFreak                         			#||
|| # Copyright (C) 2006 by Andree Haupt (PcFreak), All rights reserved.          		#||
|| # Email: info@vbstatistic.com														#||
|| # Demo: http://vbstatistic.com														#||
|| #																					#||
|| # For use with vBulletin Version  3.6.0 and higher									#||
|| #                                                                                    #||
|| # vBstatistic 1.0.0 Preview Version is to be used in conjunction with VBULLETIN 		#||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html                   #||
|| ######################################################################################||
\*=======================================================================================*/

// PlugIns Details for few Browser
if (navigator.plugins)
{
	numPlugins = navigator.plugins.length;

	if (numPlugins > 0)
	{
	document.writeln('<ul>');
		for (i = 0; i < numPlugins; i++)
			{
			plugin = navigator.plugins[i]
			document.writeln('<li><strong>' + plugin.name + ' - </strong>' + plugin.description + " - ")
			document.writeln(plugin.filename.substring(plugin.filename.lastIndexOf("\\")+1,plugin.filename.length)+ '</li>')
			}
	document.writeln('</ul>');
	}
}