function getFlashMovieObject(movieName){
  if (window.document[movieName]){
    return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1){
    if (document.embeds && document.embeds[movieName])
		return document.embeds[movieName]; 
  	}else{ // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
	    return document.getElementById(movieName);
  	}
}

function StopFlashMovie(){
	var flashMovie=getFlashMovieObject("flash_map");
	flashMovie.StopPlay();
}

function PlayFlashMovie(){
	var flashMovie=getFlashMovieObject("flash_map");
	flashMovie.Play();
	//embed.nativeProperty.anotherNativeMethod();
}

function RewindFlashMovie(){
	var flashMovie=getFlashMovieObject("flash_map");
	flashMovie.Rewind();
}

function NextFrameFlashMovie(){
	var flashMovie=getFlashMovieObject("flash_map");
	// 4 is the index of the property for _currentFrame
	var currentFrame=flashMovie.TGetProperty("/", 4);
	var nextFrame=parseInt(currentFrame);
	if (nextFrame>=10)
		nextFrame=0;
	flashMovie.GotoFrame(nextFrame);		
}


function ZoominFlashMovie(){
	var flashMovie=getFlashMovieObject("flash_map");
	flashMovie.Zoom(80);
}

function ZoomoutFlashMovie(){
	var flashMovie=getFlashMovieObject("flash_map");
	flashMovie.Zoom(120);
}

function ZoomAllFlashMovie(){
	var flashMovie=getFlashMovieObject("flash_map");
	flashMovie.Zoom(0);
}




function abreSubPagina(id, qtd){
	var pgId = id;
	
	//fecha todas
	for(i=0; i <= qtd; i++){
		document.getElementById('cell'+i).className = "internaConCelula";
		document.getElementById('link'+i).className = "";
	};
	
	//abre apenas a selecionada
	document.getElementById('cell'+id).className = "internaConCelulaOpen";
	document.getElementById('link'+id).className = "internaSubmenuLinkOn";
	top.resizeCaller();	
	
	//grava poagina atual
	var cPage = document.getElementById('currPage').value;	
	document.getElementById('currPage').value = pgId;	
	if(pgId == cPage){
		document.getElementById('cell'+id).className = "internaConCelula";
		document.getElementById('link'+id).className = "";
		document.getElementById('currPage').value = "null";
		top.resizeCaller();
	}
}

function show(id){
	document.getElementById(id).className = "visible";
	top.resizeCaller();
}

function hidden(id){
	document.getElementById(id).className = "notVisible";
	top.resizeCaller();
}

function equipe(id, qtd){
	for(i=0; i < qtd; i++){
		hidden(ls_equipe[i]);
	}
	show(id);
	top.resizeCaller();
}

function equipeint(id, qtd, sessao){
		
	for(i=0; i <= qtd; i++){
		//document.getElementById(sessao+'fc'+i).className = "notVisible";
		document.getElementById('linkfc'+i).className = "internaEquipeOff";
	};

	//document.getElementById(sessao+'fc'+id).className = "visible";
	document.getElementById('linkfc'+id).className = "internaEquipeOn";
	top.resizeCaller();
	
	/*
	for(i=0; i <= qtd; i++){
		document.getElementById('fc'+i).className = "notVisible";
		document.getElementById('linkfc'+i).className = "internaEquipeOff";
	};

	document.getElementById('fc'+id).className = "visible";
	document.getElementById('linkfc'+id).className = "internaEquipeOn";
	*/
}


function videoExpand(){
	document.getElementById('videoConteiner').className = 'videoConteinerExp';
	hidden('videosListaLateral'); 
	hidden('linkExpandir'); 
	show('linkRecolher');
	top.resizeCaller();
}
function videoContract(){
	document.getElementById('videoConteiner').className = 'videoConteinerCont';
	show('videosListaLateral'); 
	show('linkExpandir'); 
	hidden('linkRecolher');
	top.resizeCaller();
}

function destacaPlayer(){
	document.getElementById('songsPlayer').innerHTML = "&nbsp;";
	hidden('songsPlayer');
	my_window = window.open('songs_player.php','mywindow', 'width=340, height=90, top=0, left=0, crollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=yes');
	show('songsPlayerBtn');
	top.resizeCaller();
	//window.open('songs_player.php','CulturaInglesaPlayer', 'width=340, height=90, top=0, left=0, scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no');
}

function voltaPlayer(){
	document.getElementById('songsPlayer').innerHTML = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"336\" height=\"85\"><param name=\"movie\" value=\"swf/player.swf\"><param name=\"quality\" value=\"high\"><embed src=\"swf/player.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"336\" height=\"85\"></embed></object>";
	show('songsPlayer');
	hidden('songsPlayerBtn');
	top.resizeCaller();
	
	if(false == my_window.closed){
		my_window.close ();
	}
}


function abreFoto(arquivo){
	document.getElementById('galeriaConteiner').innerHTML = '<img src="'+ arquivo +'" width="400" height="300" />';	
}

function enviaForm(){
	var vForm = document.forms['formSisMail'];
	var sisUsr = document.getElementById('cmplogin').value;
	var sisPwd = document.getElementById('cmpsenha').value;
/*	var emlUsr = document.getElementById('wmlogin').value;
	var emlPwd = document.getElementById('wmsenha').value;
*/
	var sendPerm = 0;
	
	
	if(sisUsr != 'login' && sisUsr != '' && sisPwd != 'senha' && sisPwd != ''){ 
		sendPerm = "academico";
	}
	
	/*if(sendPerm != 'academico' && emlUsr != 'email' && emlUsr != '' && emlPwd != 'senha' && emlPwd != ''){ 
		sendPerm = "webmail";
	}*/
	
		
	if(sendPerm == 'academico'){
		vForm.action = "http://academico.culturainglesase.com.br:81/pf/index.jsp";
		formSisMail.submit();
	}else{
		alert('Por favor preencha os dados do formulário');
	}
	/*
	if(sendPerm =='webmail'){
		vForm.action = "webmail.php";
		formSisMail.submit();
	}*/
}

