	function mostra_mapa()
        {
		    if (navigator.appName == "Microsoft Internet Explorer")
		    {
                document.getElementById('frame_mapa').style.visibility = "visible";
            }
            else
            {
            
                    window.open(document.getElementById('frame_mapa').src);
            }

            
        }

        
        function amaga_mapa()
        {
            document.getElementById('frame_mapa').style.visibility = "hidden";
        }