// funções JS
function jsAtualizaPagina(){
  //var FsData = document.formulario.Fidata.value;
  //alert(document.formulariodata.FsData.value);
  document.formulariodata.submit();
}

function popup(URLStr, width, height)
{
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'';
  popUpWin = window.open(URLStr, 'popUpWin', styleStr);
}

// menu
$(document.body).ready(function(){  
  $("#navigation").Accordion({ 
        header: '.head', 
        active: false, 
        alwaysOpen: false, 
        animated: false 
    });
});
