ShockMode = 0;

function PontoMenu()
    {
     
	if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("Mac") != -1 )
        { 
		document.write(' | ');
		document.write('<a href="curso.htm" target="main" class="barraponto">Introdução Cursos Básicos</a>');
		document.write(' | ');
		document.write('<a href="fra_cur_acoes.htm" target="main" class="barraponto">Mercado de Ações</a>');
		document.write(' | ');
		document.write('<a href="fra_cur_vista.htm" target="main" class="barraponto">Mercado a Vista</a>');
		document.write(' | ');
		document.write('<a href="fra_cur_opcoes.htm" target="main" class="barraponto">Mercado de Opções</a>');
		document.write(' | ');
		}
        else
            { Verifica(); }
    }
                    
                   
function Verifica()
{

       if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin && navigator.plugins && navigator.plugins["Shockwave Flash"])
        { ShockMode = 1; }
        else
            {
			// Verifica no MSIE 5.xx
            if( navigator.appVersion.indexOf("5.")>=0 )
                { ShockMode = 1; }
            }

// Se depois das verificações o usuário tiver Flash Plugin instalado, vai escrever estas tags!
if (ShockMode)
    { 
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=3,0,0,0" width="400" height="25" id="hb">\n');
	document.write('<param name="movie" value="http://200.184.28.176/bovespa/flash/barra_menu_hb.swf">\n');
	document.write('<param name="WMode" value="Transparent">\n');
	document.write('<param name="loop" value="true">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="bgcolor" value="#2050AF">\n');
	document.write('<embed src="http://200.184.28.176/bovespa/flash/barra_menuhb.swf" width="400" height="25" swliveconnect="false" quality="high" salign="LT" bgcolor="#2050AF" type="application/x-shockwave-flash">\n');
	document.write('</embed>\n');
	document.write('</object>\n');
	}
    // Do contrário se ele nâo tiver Plugin, escrever o GIF!
    else 
		{ 
		document.write(' | ');
		document.write('<a href="curso.htm" target="main" class="barraponto">Introdução Cursos Básicos</a>');
		document.write(' | ');
		document.write('<a href="fra_cur_acoes.htm" target="main" class="barraponto">Mercado de Ações</a>');
		document.write(' | ');
		document.write('<a href="fra_cur_vista.htm" target="main" class="barraponto">Mercado a Vista</a>');
		document.write(' | ');
		document.write('<a href="fra_cur_opcoes.htm" target="main" class="barraponto">Mercado de Opções</a>');
		document.write(' | ');
		}
}

