// JavaScript Document
//função que seleciona estados no flash
function selecionaEstado(x,area){
    
	location.href='?estado='+x+'&area='+area;


}



// Função com comandos que executam ao carregar a página
aoCarregar = function (){
	var lis = document.getElementById("menu2").getElementsByTagName("li");
	var btIndique = lis[lis.length - 3];

	//var btIndique = document.getElementById("btIndique");
	if(btIndique){
		btIndique.onclick = function (){
			var formIndique = document.getElementById("formIndique");
			
			if(formIndique){
				if(formIndique.style.display == "" || formIndique.style.display == "none"){
					formIndique.style.display = "block";
				}else{
					formIndique.style.display = "none";
				}
			}
		}
	}
}
//window.onload = aoCarregar;
$(function(){aoCarregar();});

function ValidaIndique()
{
    var nome = document.getElementById('txtNome');
    var email = document.getElementById('txtEmail');
    var nomeIndicado = document.getElementById('txtNomeIndicado');
    var emailIndicado = document.getElementById('txtEmailIndicado');
    
    if(nome.value == '')
    {
        alert('Informe seu nome');
        nome.focus();
        return false;
    }
    if(email.value == '')
    {
        alert('Informe seu e-mail');
        email.focus();
        return false;
    }
    if(nomeIndicado.value == '')
    {
        alert('Informe o nome do indicado');
        nomeIndicado.focus();
        return false;
    }
    if(emailIndicado.value == '')
    {
        alert('Informe o e-mail do indicado');
        emailIndicado.focus();
        return false;
    }
    return true;
    
}
var intervalo;

function fechaRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "none";
}
function clicaRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "none";
	window.open ("http://www.phfit.com.br/img/pdf/Catalogo_Natal_2008_digital.pdf","Catalogo","none");
}
function mostraRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "block";
	setTimeout("fechaRich()",20000)
}

function popupBasic(){
    window.open('revistas/basic2008/revista.html','Basic2008','width=890, height=660','resizable = yes')
}
function popupEaster(){
    window.open('revistas/easter2010/revista.html','easter2010','width=890, height=660','resizable = yes')
}
function popupNatal(){
    window.open('revistas/natal2008/revista.html','Natal2008','width=890, height=660','resizable = yes')
}
function popupFitas(){
    window.open('revistas/personalizadas/revista.html','FitasPersonalizadas','width=890, height=660','resizable = yes')
}
function popupOrnaments(){
    window.open('revistas/ornaments2009/revista.html','Ornaments2009','width=890, height=660','resizable = yes')
}
function popupChristmas(){
    window.open('revistas/natal2009/revista.html','Christmas2009','width=890, height=660','resizable = yes')
}
