//Check for Flash version
// Check for Flash version 5 or greater in Netscape
var UseFlash;
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if ( plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= 5 )
{
	UseFlash = 1;
	// Check for Flash version 5 or greater in Explorer
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0)
{
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('UseFlash = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))\n');
	document.write('</SCRIPT\> \n');
}
