/*************************/
// FUNÇÕES QUE O FLASH PRINCIPAL CHAMA PARA ABRIR AS PÁGINAS
/*************************/

function abrirTeaser() { 
	abre_link("teaser","teaser.html");
}

function abrirDocumentario() { 
	abre_link("documentario","o_documentario.html");
}

function abre_link(nome, link) {
	var ancora = "conteudo";
	
	if(estou_na_index == "sim") {
		window.document.location = "#" + ancora;
		window.conteudo.document.location = link;
	} else {
		if(nome == "home") {
			// quando for para a página inicial não será necessário ir para a âncora
			ancora = "";
		}
		
		window.document.location = "index.php?pag="+nome+"#"+ancora;		
	}
}
