<!--

/**
 * (c) Copyright 2001-2002 netdecisions Limited.  This file is the copyright
 * and confidential information of netdecisions Limited or one of its
 * group of companies ("netdecisions") and may not be used in whole or in
 * part without the prior written consent of netdecisions or pursuant to
 * a licence granted by netdecisions allowing such use.
 **/

if (navigator.plugins && navigator.plugins["Shockwave Flash"]){
	var desc = navigator.plugins["Shockwave Flash"].description;
	flashVersion = parseInt(desc.match(/\d+\.\d*/));
}

else if (!window.flashVersion && window.ActiveXObject){
	onerror = new Function("onerror=new Function('return false');return true");
	for (var i=3;i<99;i++){
		flashVersion = i-1;
		new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);
	}
}

var thisFlashVersion = window.flashVersion && flashVersion > 5;

//-->