function vaipara(onde){
	new Effect.ScrollTo(onde,{offset:0});
}

function GerarSWF(arquivo,largura,altura,id,cor,wmode){
    document.writeln('    <object id="globalnav-object" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" align="top" width="' + largura + '" height="' + altura + '" id="' + id + '" name="' + id + '">');
    document.writeln('        <param name="movie" value="' + arquivo + '" />');
    document.writeln('        <param name="FlashVars" value="loc=en_US&htmlApp=false&gatewayURL=gwurl" />');
    document.writeln('        <param name="menu" value="false" />');
	document.writeln('        <param name="salign" value="t" />');
	document.writeln('        <param name="BGCOLOR" value="' + cor + '" />');
	document.writeln('        <param name="quality" value="high" />');
	document.writeln('        <param name="wmode" value="' + wmode + '" />');
    document.writeln('        <embed id="globalnav-embed" src="' + arquivo + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="loc=en_US&htmlApp=false&gatewayURL=gwurl" menu="false" salign="t" align="top" quality="high" wmode="' + wmode + '" bgcolor="' + cor + '" id="' + id + '" width="' + largura + '" height="' + altura + '"></embed>');
    document.writeln('    </object>');
}


// Adiciona aos Favoritos
function addBookmark(title, url){
if (document.all) window.external.AddFavorite(url, title); 
else if (window.sidebar) window.sidebar.addPanel(title, url, "") 
}

