// controle do player by jeff
try{
	xmlhttp = new XMLHttpRequest();
}
catch(ee){
	try{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
   	}
	catch(e){
		try{
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(E){
			xmlhttp = false;
		}
   	}
}
function toca(){
	document.getElementById('comandos').innerHTML='<img src="cmdStop.jpg" alt="Stop" border="0" usemap="#Mapeamento" /><map name="Mapeamento" id="Mapeamento"><area shape="rect" coords="10,4,36,16" style="cursor:pointer !important; cursor:hand;" alt="play" /><area shape="rect" coords="49,4,73,17" onclick="javascript:para()" style="cursor:pointer !important; cursor:hand;" alt="stop" /><area shape="rect" coords="145,3,173,20" onclick="javascript:destaca()" alt="rit" target="_blank" /></map>';

	document.getElementById('tela').innerHTML='<iframe allowtransparency="true" width="169" height="127" frameborder="0" scrolling="no" src="iframePlayer.html"></iframe>';
}
function para(){
	document.getElementById('comandos').innerHTML='<img src="cmdPlay.jpg" alt="Stop" border="0" usemap="#Mapeamento" /><map name="Mapeamento" id="Mapeamento"><area shape="rect" coords="10,4,36,16" onclick="javascript:toca()" style="cursor:pointer !important; cursor:hand;" alt="play" /><area shape="rect" coords="49,4,73,17" style="cursor:pointer !important; cursor:hand;" alt="stop" /><area shape="rect" coords="145,3,173,20" onclick="javascript:destaca()" alt="rit" target="_blank" /></map>';

	document.getElementById('tela').innerHTML='<iframe allowtransparency="true" width="169" height="127" frameborder="0" scrolling="no" src="iframeOff.html"></iframe>';
}
function destaca(){
	document.getElementById('comandos').innerHTML='<img src="cmdPlay.jpg" alt="Stop" border="0" usemap="#Mapeamento" /><map name="Mapeamento" id="Mapeamento"><area shape="rect" coords="10,4,36,16" onclick="javascript:toca()" style="cursor:pointer !important; cursor:hand;" alt="play" /><area shape="rect" coords="49,4,73,17" style="cursor:pointer !important; cursor:hand;" alt="stop" /><area shape="rect" coords="145,3,173,20" onclick="javascript:destaca()" alt="rit" target="_blank" /></map>';

	document.getElementById('tela').innerHTML='<iframe allowtransparency="true" width="169" height="127" frameborder="0" scrolling="no" src="iframeOff.html"></iframe>';
	window.open('http://www.rittv.com.br/webcast/','Ritaovivo','top=200,left=280,width=660,height=460,maximized=no,resizebled=no,scrollbars=no');
}

