// now_onair.js

iijurl_h = 'http://www9r.nhk.or.jp/nhkworld/r/high.asx';
iijurl_l = 'http://www9r.nhk.or.jp/nhkworld/r/low.asx';
ntturl_h = 'http://www.nhk.or.jp/nhkworld/r0/high.asx';
ntturl_l = 'http://www.nhk.or.jp/nhkworld/r0/low.asx';


function movie_play(flg){

	rate = "";
	name = "toprate=";
	cookie = document.cookie+";";
	start = cookie.indexOf(name);
	if (start != -1) {
		end = cookie.indexOf(";",start);
		rate = unescape(cookie.substring(start+name.length,end));
	}

	if(typeof japan =="undefined") {
		//not japan
		if(rate == 'H') {
			document.quality.rate[1].checked = true;
			asxfile = ntturl_h;
		} else {
			document.quality.rate[0].checked = true;
			asxfile = ntturl_l;
		}
	} else {
		//japan
		if(rate == 'H') {
			document.quality.rate[1].checked = true;
			asxfile = iijurl_h;
		} else {
			document.quality.rate[0].checked = true;
			asxfile = iijurl_l;
		}
	}

	auto = "";
	name = "auto=";
	cookie = document.cookie+";";
	start = cookie.indexOf(name);
	if (start != -1) {
		end = cookie.indexOf(";",start);
		auto = unescape(cookie.substring(start+name.length,end));
	}

	autodoc  = '<dl id="autoStart">';
	autodoc += '<dt>Auto start</dt>';
	if(auto == '0'){
		autodoc += '<dd><a href="javascript:auto_set(1);">on</a> <span>|</span> off</dd>';
		auto = '0';
		AUTO = 'False';
	} else {
		autodoc += '<dd>on <span>|</span> <a href="javascript:auto_set(0);">off</a></dd>';
		auto = '1';
		AUTO = 'True';
	}
	autodoc += '</dl>';
	document.getElementById("autoplay").innerHTML = autodoc;

	if(flg == 1) {
		auto = '1';
		AUTO = 'True';
	}

	doc =	'<OBJECT ID="MediaPlayer2" WIDTH="272" HEIGHT="197" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"'
		+'CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"'
		+'standby="Loading MicrosoftR WindowsR Media Player components..." type="application/x-oleobject">'
		+'<PARAM NAME="AutoStart" VALUE="'+AUTO+'">'
		+'<PARAM NAME="ShowControls" VALUE="True">'
		+'<PARAM NAME="ShowStatusBar" VALUE="False">'
		+'<param name="ShowPositionControls" value="false">'
		+'<PARAM NAME="FileName" VALUE="'+asxfile+'">'
		+'<EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="'+asxfile+'" name="MediaPlayer2" autostart='+auto+' width=272 height=197 showcontrols=1 ShowStatusBar=0 ShowPositionControls=0>'
		+'</EMBED></OBJECT>';

	if(auto == '0'){
		doc =	'<a href="javascript:movie_play(1);"><img src="/daily/english/fixed/images/movie_stop.gif" alt=""></a>';
	}
	document.getElementById("iframe-movie").innerHTML = doc;
	return;

}

function rate_set(rate)
{
	if(rate.value == 'S') {
		document.cookie = "toprate=L; path=/";
		auto_set(0);
		if(typeof japan =="undefined") {
			window.open('../../nhkworld/english/info/jump2.html', "", "status=no,scrollbars=no,resizable=yes,width=1030,height=595");
		} else {
			window.open('http://www.nhk.or.jp/nhkworld/r/movie/', "", "status=no,scrollbars=no,resizable=yes,width=1030,height=595");
		}
	} else {
		document.cookie = "toprate="+rate.value+"; path=/";
		movie_play();
	}
}

function auto_set(auto)
{
	if(auto == null || auto == '1'){
		document.cookie = "auto=1; path=/";
		movie_play();
	} else {
		document.cookie = "auto=0; path=/";
		movie_play();
	}
}
