

initMenu = function() {
	if (document.all&&document.getElementById) {
		menuHRoot = document.getElementById("menuH");
		for (i=0; i<menuHRoot.childNodes.length; i++) {
			node = menuHRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
				this.className+=" over";
			}
			node.onmouseout=function() {
			this.className=this.className.replace(" over", "");
			}
			}
		}
	}
}

window.onload=initMenu;


function abrir_janela_popup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

	function ShowHelp(div, title, desc)
	{
		div = document.getElementById(div);
		div.style.display = 'inline';
		div.style.position = 'absolute';
		div.style.width = '300';
		div.style.backgroundColor = 'lightyellow';
		div.style.border = 'dashed 1px black';
		div.style.padding = '10px';
		div.innerHTML = '<span class=body><b>' + title + '</b></span><br><img src=images/1x1.gif width=1 height=5><br><div style="padding-left:10; padding-right:5" class=body>' + desc + '</div>';
	}

	function HideHelp(div)
	{
		div = document.getElementById(div);
		div.style.display = 'none';
	}