/*========================================================== 2008.12.1

 ■SWFファイル表示スクリプト

======================================================================*/


// ▼ 設定ここから ▼
//----------------------------------------------------------//

//モード設定（代替画像表示モード=0,ページリダイレクトモード=1）
var Mode = 0;


//出力するswfファイルのバージョン設定
var FlashVarsion = "4";


// ▼ 設定ここまで 以下編集禁止 ▼
//----------------------------------------------------------//

function checkFlash(varsion){

	var browser = navigator.appName;

	if (browser != "Microsoft Internet Explorer" ){
		for(i = 0; i < navigator.plugins.length; i++) {
			if(navigator.plugins[i].name ==  "Shockwave Flash"){ 
				if(parseInt(navigator.plugins["Shockwave Flash"].description.substring(navigator.plugins["Shockwave Flash"].description.indexOf(".")-2)) < varsion ){ return 2; }
				else{ return 0; }
			}
		}
		return 1;
	}else{ return 0; }

}

function writeSWF(flashObj , Bg , Width , Height , noFlash ){

	var flag = checkFlash(FlashVarsion);

	if( flag == "0"){
		document.open();
			document.write('<div>');
				document.write('<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width=\"' + Width + '\" height=\"' + Height + '\">');
				document.write('<param name=\"movie\" value=\"' + flashObj + '\">');
				document.write('<param name=\"quality\" value=\"high\">');
				document.write('<param name=\"bgcolor\" value=\"#'+ Bg +'\">');
				document.write('<param name=\"menu\" value=\"false\">');
				document.write('<param name=\"wmode\" value="transparent\">');
				document.write('<embed src=\"' + flashObj + '\" quality=\"high\" bgcolor=\"#'+ Bg +'\"  width=\"' + Width + '\" height=\"' + Height + '\" wmode=\"transparent\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" menu=\"false\"></embed>');
				document.write('</object>');
			document.write('</div>' + '\n');
		document.close();
	}else if(Mode == "1"){
		location.href = noFlash ;
	}else if(Mode == "0"){
		document.open();
		document.write('<a href=\"http://get.adobe.com/jp/flashplayer/\" title=\"Adobe Flash Player\" target=\"_blank\"><img src=\"' + noFlash + '\" width=\"' + Width + '\" height=\"' + Height + '\" border=\"0\" alt=\"\"></a>');
		document.close();
	}
}


// ▼ SWFファイル読み込み ▼
//----------------------------------------------------------//

writeSWF('http://the-emotion.com/wp-content/themes/the_emotion/flash/topflash.swf', '' , 950 , 579 , './flash/noflash.jpg' );


