function showFlash(src, width, height, alternative, awidth, aheight, compileversion, bakgcolor) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write(' codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=' + compileversion + ',0,0,0" width="' + width + '" height="' + height + '">');
	document.write('<param name=movie value="' + src + '">');
	document.write('<param name=quality value=high>');
	document.write('<param name=wmode value=transparent>');
	document.write('<param name=bgcolor value=' + bakgcolor + '>');
	if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]){
	   document.write('<EMBED SRC="' + src + '" width="' + width + '" HEIGHT="' + height + '" LOOP="true" QUALITY="high" WMODE="transparent"');
	   document.write(' swLiveConnect=FALSE');
	   document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
	} else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 
	      && navigator.appVersion.indexOf("2.")>=0)){
		document.write('<IMG SRC="' + alternative + '" width="' + awidth + '" HEIGHT=' + aheight + ' BORDER=0>');
	}
	document.write('<noembed> <img src="' + alternative + '" width="' + awidth + '" height="' + aheight + '" border="0"></NOEMBED>');
	document.write('<noscript>');
	document.write('<img src="' + alternative + '" width="' + awidth + '" height="' + aheight + '" border="0">');
	document.write('</noscript>');
	document.writeln('</object>');
}