function terminalChk(movieId){

    var Swidth  = screen.width;
    var Sheight = screen.height;
    var ua =navigator.userAgent;

    //ユーザーエージェントとディスプレイサイズで判定
    if(ua.indexOf('iPad') > -1 && (Swidth == 768 && Sheight== 1024)){

		//videoタグを書く
		document.write('<div id="ipad">\n');
		document.write('<img src="./next.jpg" width="324" height="182">\n');
		//document.write('<video controls autoplay width="324" height="182">\n');
		//document.write('<source src="./nihongo01_0715.mp4" type="video/mp4" />\n');
		//document.write('</video>\n');
		document.write('</div>\n');

	//テスト用に追加中
    }else{
    
    	//それ以外のブラウザ
		//FLASHタグを書く
		story_next("www.ytv.co.jp.hana_next.swf",431,271);
    }
}


function terminalChkTOP(movieId,type){

	//端末情報取得
    var Swidth  = screen.width;
    var Sheight = screen.height;
    var ua = navigator.userAgent;

	//Flashインストールされているか
	var isFlashInstalled = function() {
  	if ( navigator.plugins['Shockwave Flash'] ) {
    	return true;
  	}
 	 try {
    	new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
    	return true;
  	} catch (e) {
    	return false;
  	}
	}();
	
    //ユーザーエージェントとディスプレイサイズで判定
    if(ua.indexOf('iPad') > -1 && (Swidth == 768 && Sheight== 1024)){

			//imgタグを書く
			document.write('<div id="ipad" style="margin-top:15px;">\n');
			document.write('<img src="./next.jpg" width="285" height="160">\n');
			document.write('</div>\n');
			
	    /*movieであれば動画を読み込む
   		if(type == "movie"){
		
			document.write('<script language="JavaScript" type="text/javascript">arcfourTOP("'+movieId+'");</script>\n');

	    //それ以外は静止画を読む
   		 }else{
			
			//imgタグを書く
			document.write('<div id="ipad" style="margin-top:15px;">\n');
			document.write('<img src="./next.jpg" width="285" height="160">\n');
			document.write('</div>\n');
   		 }
   		 */
   		 
    //それ以外のブラウザ
    }else{
    
    	if(isFlashInstalled == 0){
 
			//imgタグを書く
			document.write('<div id="ipad" style="margin-top:15px;">\n');
			document.write('<img src="./next.jpg" width="285" height="160">\n');
			document.write('</div>\n');
		
		}else{
			
			//FLASHタグを書く
			story_top("www.ytv.co.jp.hana_top.swf",291,220);
		}
    }

}
