<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function abre_popup (x,w,h,n,com_scroll, status_bar) {
	rolagem = "";
	barra_status = '';
	if (com_scroll != null) { rolagem = "yes"} else { rolagem = "no" }
	if (status_bar != null) { barra_status = "yes"} else { barra_status = "no" }
	var l = ( (window.screen.width  - w) / 2 -10);
	var t = ( (window.screen.height - h) / 2 -20);
	if (n != '') {
	    janelinha = window.open(x,n,'leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=' + barra_status + ',menubar=no,scrollbars=' + rolagem + ',resizable=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',copyhistory=no,height='+h+',width='+w+'');
	} else {
	    janelinha = window.open(x,'','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=' + barra_status + ',menubar=no,scrollbars=' + rolagem + ',resizable=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',copyhistory=no,height='+h+',width='+w+'');
	}
}

self.focus();

// Funcão de TEMPO
var tempo_inicial, tempo_final, finaltime=0;

function inicia_relogio() {var today = new Date(); tempo_inicial = today.getTime();}
function parar_relogio() {var today = new Date(); tempo_final = today.getTime(); calcular();}
function calcular() {var time = (tempo_final - tempo_inicial - 0)/1000;	exibe_tempo(time);}
function exibe_tempo(time) {
	if (time > 60) {
		time = Math.ceil(time);
		var minutos = Math.floor(time / 60);
/*		alert (minutos);
		alert (time);
		alert (minutos * 60); */
		var segundos = time - (minutos * 60);
		
//		alert('Tempo nesta página : ' + minutos + '"' + segundos + '\'')
	} else {
//		alert('Tempo nesta página : ' + Math.ceil(time) + ' segundos.')
	}
}

// ************* IMPORTANTE ***************
// colocar no BODY das páginas
//  onLoad="inicia_relogio()" onUnload="parar_relogio()"
// ************* IMPORTANTE ***************

// Fim Função de TEMPO

// *************** FUNÇÃO SINCRONISMO *************
// ATENÇÃO O USO DESTA FUNÇÃO SEM AUTORIZAÇÃO ACARRETARÁ EM PROCESSO JUDICIAL
function sincroniza(atual) {
	tempo_atual_video = atual;
	for (i = 0; i < timecode.length; i ++) {
		if (tempo_atual_video >= timecode[i] && tempo_atual_video < timecode[i + 1]) {
			//alert(tempo_atual_video + ' / ' + timecode[i]);
			document.all.img_slide.src = path + imagem + (i + 1) + '.jpg';
			break;
		}
	}
}

var timerID = 0;
var tStart  = null;

function UpdateTimer() {
   if(timerID) {
      clearTimeout(timerID);
      clockID  = 0;
   }
  
   timerID = setTimeout("UpdateTimer()", 1000);
   atual = Math.floor(Player.controls.currentPosition);
   sincroniza(atual);
}
// *************** FUNÇÃO SINCRONISMO *************

// *************** FUNÇÃO TRANSCRICAO *************
function transcricao(hora,minuto,segundo, frame) {
	hs = ((hora * 6) * 6) * 10 * 10;
	ms = minuto * 60;
	ss = segundo;
	timecode = hs + ms + ss;
	if (frame == null) {
	Player.controls.currentPosition = timecode;
	} else if (frame != '') {
		if (top.tvaovivo.video.pagina == 'video') {
			top.tvaovivo.video.Player.controls.currentPosition = timecode;	
		} else {
			F_play();
		}
	}
}
// *************** FUNÇÃO TRANSCRICAO *************

// *************** FUNÇÃO MOUSEOVER FORM *************
clr=new Array('yellow','white','silver');
function highlight(state) {
	element=event.srcElement;
	if (element.tagName=='INPUT') {
		etype=element.type;
		if ((etype=='submit' || etype=='reset') && state==1) state=2;
			element.style.backgroundColor=clr[state];
			element.focus();
		}
}
// *************** FUNÇÃO MOUSEOVER FORM *************
//-->