function mkFlash(){

	/*no Flash*/
     var noFla = '';
	noFla += '<div id="flashcontent"><a href="http://www.adobe.com/go/gntray_dl_getflashplayer" target="_blank"><img src="com/image/noflash.jpg" width="890" height="505" border="0" alt=""></a><p>To display this page properly, you need <a href="http://www.adobe.com/go/gntray_dl_getflashplayer" target="_blank">Adobe Flash Player.</a><br>If the page does not display properly or is not stable, please download the latest version of Flash Player from Adobe website.</p></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=9,0,28,0" width="'+flaWidth+'" height="'+flaHeight+'">';	  
	flaArea += '<param name="movie" value="'+flaFile+'">';
	flaArea += '<param name="quality" value="high">';
	flaArea += '<param name="wmode" value="transparent">';
	flaArea += '<param name="FlashVars" value="skipflag=0">';
	flaArea += '<embed src="'+flaFile+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+flaWidth+'" height="'+flaHeight+'" flashvars="skipflag=0">';
	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);
	}

}
