var image;
var flashVersion = 0;

NewImage = new Image(105,102);
NewImage.src = "../art/logo_over.gif";

document.write('<scr' + 'ipt language="VBScript"\> \n');
document.write('on error resume next \n');
document.write('dim obFlash \n');
document.write('set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.7") \n');
document.write('if IsObject(obFlash) then \n');
document.write('flashVersion = 7 \n');
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.6") end if \n');
document.write('if flashVersion < 7 and IsObject(obFlash) then \n');
document.write('flashVersion = 6 \n');
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.5") end if \n');
document.write('if flashVersion < 6 and IsObject(obFlash) then \n');
document.write('flashVersion = 5 \n');
document.write('end if');
document.write('</scr' + 'ipt\> \n');

if(navigator.plugins && flashVersion == 0){

	if(navigator.plugins["Shockwave Flash"]){
		var flashDescription = navigator.plugins["Shockwave Flash"].description;
		var flashVersion = parseInt(flashDescription.charAt(flashDescription.indexOf(".") - 1));
	}
}