var plugins = ['QuickTime','Flash','Shockwave','WindowsMediaPlayer','Silverlight','VLC'];

function checkPlugin(name) {
	img = document.createElement('img');

	if( PluginDetect.isMinVersion(name, '0') >= 0 ) {
		img.src = '/scripts/plugindetect-0.1/icons/'+name+'.jpg';
		img.alt = name + ' - ' + PluginDetect.getVersion(name);
	}
	else {
		img.src = '/scripts/plugindetect-0.1/icons/'+name+'-bw.jpg';
		img.alt = name + ' - ' + "not installed";
	}

	div = document.getElementById('PluginsCheckResult');
	div.appendChild(img);
}

for ( p in plugins ) {
	checkPlugin(plugins[p]);
}

