function mkFlash(){

	/*no Flash*/
     var noFla = '';
	noFla += '<div style=padding-top:70px;><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW" target="_blank"><img src="img/noflash.jpg" width="800" height="400" border="0" alt=""></a></div>';
    

	/*Flash*/
	var flaArea= "";
	flaArea += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/ swflash.cab#version=8,0,0,0" width="'+flaWidth+'" height="'+flaHeight+'">';
	flaArea += '<param name="movie" value="'+flaFile+'">';
	flaArea += '<param name="quality" value="high">';
	flaArea += '<param name="wmode" value="transparent">';
	flaArea += '<embed src="'+flaFile+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+flaWidth+'" height="'+flaHeight+'">';
	flaArea += '</embed>';
	flaArea += '</object>';

	var FlaVerCk=false;
	var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0);

	if (plugin && parseInt(plugin.description.match(/\d+\.\d+/)) >= 8) {
	FlaVerCk=true;
	}
	else if(navigator.userAgent && (navigator.userAgent.indexOf("MSIE") >= 0) && (navigator.userAgent.indexOf("Win") >= 0)){

		/*measures Opera6*/
		if(navigator.userAgent.indexOf("Opera") <= 0){
		var flaVer=new ActiveXObject("ShockwaveFlash.ShockwaveFlash").FlashVersion();
		flaVer=Math.floor(flaVer / 0x10000);
		(flaVer >= 8) ? FlaVerCk=true : FlaVerCk=false;
		}

	}else{FlaVerCk=false;}

	if(FlaVerCk){
	document.write(flaArea);
	} else {
	document.write(noFla);
	}

}