// -----------------------------------------------------------------------------
// - weblog1.js - collecting clientdata for SHOWlog v5 - Part 1
// -
// - Creation:				13.12.2005	Daniel Sokoll
// - Last Changes:	14.12.2005	Daniel Sokoll
// -----------------------------------------------------------------------------
var weblog_flash="U";
var weblog_real="N";
var weblog_acro="N";
var weblog_mplay="N";
var weblog_qtplay="N";
var weblog_MSDetect = "false";
if (navigator.plugins && navigator.plugins.length) {
	x = navigator.plugins["Shockwave Flash"];
	if(x) {
		weblog_flash="Y"
		if(x.description) {
			y = x.description;
			weblog_flash = y.charAt(y.indexOf('.')-1);
		}
	}
	if(navigator.plugins["Shockwave Flash 2.0"]) {
		weblog_flash="2";
	}
}
else if(navigator.mimeTypes && navigator.mimeTypes.length) {
	x = navigator.mimeTypes['application/x-shockwave-flash'];
	if(x && x.enabledPlugin) weblog_flash="Y";
	x = navigator.mimeTypes['audio/x-pn-realaudio-plugin'];
	if(x && x.enabledPlugin) weblog_real="Y";
	x = navigator.mimeTypes['application/pdf'];
	if(x && x.enabledPlugin) weblog_acro="Y";
	x = navigator.mimeTypes['application/x-mplayer2'];
	if(x && x.enabledPlugin) weblog_mplay="Y";
	x = navigator.mimeTypes['video/quicktime'];
	if(x && x.enabledPlugin) weblog_qtplay="Y";
}
else weblog_MSDetect = "true";