function expandit(curobj){
var ns6=document.getElementById&&!document.all?1:0
var head="display:''"
var folder=''
folder=ns6?curobj.nextSibling.nextSibling.style:document.all
[curobj.sourceIndex+1].style
if (folder.display=="none")
folder.display=""
else
folder.display="none"
}

function showTimer() {
  var time=new Date();
  var hour=time.getHours();
  var minute=time.getMinutes();
  var second=time.getSeconds();
  if(hour<10)   hour  ="0"+hour;
  if(minute<10) minute="0"+minute;
  if(second<10) second="0"+second;
  var st=hour+":"+minute+":"+second;
  document.getElementById("TimerHpo").innerHTML=st;
}
function initTimer() {
  setInterval(showTimer,1000);
}

isIE = (navigator.appName == "Microsoft Internet Explorer")
if (isIE) {
  document.write('<style type="text/css">')
  document.write('body {')
  document.write('scrollbar-face-color : #6B96CE;')
  document.write('scrollbar-shadow-color : #FFFFFF;')
  document.write('scrollbar-highlight-color : #FFFFFF;')
  document.write('scrollbar-3dlight-color : #FFFFFF;')
  document.write('scrollbar-darkshadow-color : #FFFFFF;')
  document.write('scrollbar-track-color : #D7EEFE;')
  document.write('scrollbar-arrow-color : #FF0000')
  document.write('}')
  document.write('</style>')
}

function mostra(foto) {
  imagem="<img src="+foto+" width=400 height=300 border=1 alt='Federação de Tiro Prático do Rio de Janeiro'>";
  janela=window.open(foto,'newWin','menubar=no,width=450,top=30,left=30,height=380,resizable=no,scrollbars=no');
  janela.document.write("<html><head><title>Federação de Tiro Prático do Rio de Janeiro</title></head>")
  janela.document.write("<body bgcolor='FFFFFF'><center>");
  janela.document.write("<font face=Verdana size=1 color=000000>[ A imagem está em resolução 800x600 ]</font>");
  janela.document.write(imagem);
  janela.document.write("<br><br><input type=\"button\" value=\" Fechar a Janela \" onClick=\"window.close()\" style=\"height:19;font-family:Verdana;font-size:9pt;font-color:FF0000;background-color:FFFFFF;border-width:1;border-style:solid;border-color:000000;cursor:hand\">");
  janela.document.write("</center></body></html>");
  janela.document.close();
}