function alertFavoritos(){
	alert("Conteúdo adicionado \n\n com sucesso à \n\n  Meus Favoritos.");
}

function alertEmail(){
	alert("Seu cartão foi enviado \n\n com sucesso. Aproveite\n\n e mande mais cartões.");
}

function alertRequisicao(){
	alert("  Sua solicitação foi enviada com sucesso.\n\n Em breve enviaremos o material solicitado.\n\n        A Pifizer Agradece o seu contato.");
}


function imprimir(){
	javascript:print();
}

function abrePop(endereco, nome, param){
	javascript:window.open(endereco, nome, param);
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}


//----------------------- INÍCIO FUNÇÕES MENU TOPO -----------------------//

activateMenu = function(nav) {

    /* currentStyle restricts the Javascript to IE only */
	if (document.all && document.getElementById(nav).currentStyle) {  
        var navroot = document.getElementById(nav);
        
        /* Get all the list items within the menu */
        var lis=navroot.getElementsByTagName("LI");  
        for (i=0; i<lis.length; i++) {
        
           /* If the LI has another menu level */
            if(lis[i].lastChild.tagName=="UL"){
            
                /* assign the function to the LI */
             	lis[i].onmouseover=function() {	
                
                   /* display the inner menu */
                   this.lastChild.style.display="block";
                }
                lis[i].onmouseout=function() {                       
                   this.lastChild.style.display="none";
                }
            }
        }
    }
}

//----------------------- FIM FUNÇÕES MENU TOPO -----------------------//