//	test for flash and display image
	var verStr=navigator.appVersion
	var app=navigator.appName
	var whichCheck = ""
	var ok = "dontKnow"

	if ((app.indexOf('Netscape') != -1) || (navigator.plugins && navigator.plugins.length)) {
		
		whichCheck = "javaCheck()";

 	} else if (app.indexOf('Microsoft') != -1) {

		whichCheck = (verStr.indexOf('Mac')!=-1) ? "ok = 'dontKnow'" : "vbCheck()";
	}
	eval(whichCheck)


function javaCheck() {
		ok =(navigator.plugins && navigator.plugins["Shockwave Flash"]) ? "yes" : "no"
}

function vbCheck() {	
		document.write(''+

	'<scr' + 'ipt language="VBScript">\nOn error resume next\n'+
	'MM_dir = IsObject(CreateObject("SWCtl.SWCtl.1"))\n'+
	'MM_flash = NOT IsNull(CreateObject("ShockwaveFlash.ShockwaveFlash"))\n</scr' + 'ipt>'
);
	ok = (window.MM_flash) ? "yes" : "no"
}

