
<!--


function openNewWindow(URLtoOpen, windowName,windowFeatures) {
newWindow=window.open(URLtoOpen, windowName,
windowFeatures); }


function Janela(url,winName) {
window.open(url,winName,'width=795,height=396,top=30,left=20,toolbar=no,scrollbars=no');
}


/***********************************************
* Script para Mostra/esconder celulas nas tabelas
***********************************************/


     function displayRow(a){

      var row = document.getElementById("letra"+a);
      if (row.style.display == '') row.style.display = 'none';
      else row.style.display = '';
      }



/***********************************************
* Script para habilitar o menu para o IE
***********************************************/



sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);






<!--
startList = function() {

	// code for IE
	if(!document.body.currentStyle) return;
	var subs = document.getElementsByName('submenu');
	for(var i=0; i<subs.length; i++) {
		var li = subs[i].parentNode;
		if(li && li.lastChild.style) {
			li.onmouseover = function() {
				this.lastChild.style.visibility = 'visible';
			}
			li.onmouseout = function() {
				this.lastChild.style.visibility = 'hidden';
			}
		}
	}
}
window.onload=startList;
-->

