
	var IsFlash = false ;
	if (navigator.mimeTypes) {
		if (navigator.mimeTypes.length > 0) {
			for (i = 0 ; i < navigator.plugins.length ; i++ ) {
				if (navigator.plugins[i].name.indexOf('Shockwave Flash') >= 0) {
					if (navigator.plugins[i].description.indexOf('7.') >= 0) IsFlash = true ;
					if (navigator.plugins[i].description.indexOf('8.') >= 0) IsFlash = true ;
					if (navigator.plugins[i].description.indexOf('9.') >= 0) IsFlash = true ;
				}
			}
		}
	}

	if((navigator.appVersion.indexOf("MSIE") != -1) && (navigator.appVersion.indexOf("Windows") != -1)){
		document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n');
		document.write('on error resume next \n');
		document.write('IsFlash = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.7"))) \n');	
		document.write('</SCR' + 'IPT\> \n');
	}
	
function BrowserCheck() {
	var b = navigator.appName
	if (b=="Netscape") this.b = "ns"
	else if (b=="Microsoft Internet Explorer") this.b = "ie"
	else this.b = b
	this.v = parseInt(navigator.appVersion)
	this.ns3 = (this.b=="ns" && this.v<4)
	this.ns4 = (this.b=="ns" && this.v==4)
	this.ns5 = (this.b=="ns" && this.v==5)
	this.ie3 = (this.b=="ie" && this.v<=4)
	this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0)
	this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0)
	if (this.ie5) this.v = 5
	this.dead = (this.ie4||this.ns3)
}

	is = new BrowserCheck()
	
	if (is.dead) IsFlash = false ;
	if (!document.images) IsFlash = false ;


