<!--

var Flash4Installed = 0;

function CheckFlash4() {
	if (navigator.appName == "Netscape") 
	{
		if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ) 
		{
			// Check for Flash version 4 or greater in Netscape
			var plugin = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
			if (plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1))>=4)
				Flash4Installed = 1;
		}
	}
	else 
	{
		Flash4Installed = IsInstalled("Flash4");
	}
}

function RunFlash4Check() {
	CheckFlash4();

//	if (Flash4Installed) 
//		alert ('Flash 4 installed.');
//	else
//		alert ('Flash 4 not installed.');
}
	
if (navigator.appName != "Netscape") {
	document.write('<SCRIPT LANGUAGE="VBScript"> \n');
	document.write('<!-- \n');
	document.write('	Function IsInstalled(which) \n');
	document.write('		on error resume next \n');
	document.write('		IsInstalled = false \n');
	document.write('		If (which = "Flash4") Then \n');
	document.write('			IsInstalled = IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4")) \n');
	document.write('		End If \n');
	document.write('	End Function \n');
	document.write('rem --> \n');
	document.write('</SCRIPT>\n');
}

//-->

