/******************************************************************************
	初期設定
******************************************************************************/
var gsTickerSwf_AN = "http://www.uchinomi.com/bp/horoyoi.swf";

var gsTickerId_AN = "Ticker_AN";

// Tikerを作成する
MakeTicker_AN();

/******************************************************************************
	関数名		MakeTicker_AN
	機能		ちゅっぱすとりーむ配信用ティッカー
	
	入力		なし
	出力		document.writeによるHTML出力
******************************************************************************/
function MakeTicker_AN(){
	var sTickerUrl = gsTickerSwf_AN;
	
	var sHtml = "";
	sHtml += '<div style="width:200px; border:#FE8CB7 solid 2px;">';
	sHtml += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="200" height="180" id="utv78196">';
	sHtml += '<param name="flashvars" value="autoplay=false&amp;brand=embed&amp;cid=3352197&amp;locale=en_US"/>';
	sHtml += '<param name="allowfullscreen" value="true"/>';
	sHtml += '<param name="allowscriptaccess" value="always"/>';
	sHtml += '<param name="movie" value="http://www.ustream.tv/flash/live/1/3352197"/>';
	sHtml += '<embed flashvars="autoplay=false&amp;brand=embed&amp;cid=3352197&amp;locale=en_US" width="200" height="180" allowfullscreen="true" allowscriptaccess="always" id="utv78196" name="utv_n_207067" src="http://www.ustream.tv/flash/live/1/3352197" type="application/x-shockwave-flash" />';
	sHtml += '</object>';
	sHtml += '<a href="http://zoo-st.com/chuppa/" style="padding: 0px 0px 0px; width: 200px; background: #000; display: block; color: #fff;  text-align: center;" target="_blank"><img src="http://zoo-st.com/chuppa/chuppa_b_ust.jpg" width="200" height="50" border="0" alt="ちゅっぱすとりーむ"></a>';	
	sHtml += '</div>';
	
	document.write(sHtml);
}

