function conf(msg,url){
	if(confirm(msg)){
		window.location.href = url;
	} else {
		void(0);
		return false;
	}
}

function confirmar(msg,url){
	if(confirm(msg)){
		window.location.href = url+"&okconfirm=ok";
	} else {
		void(0);
		return false;
	}
}

function flipitem(nome) {
    if ( document.getElementById(nome).style.display != '' )
      document.getElementById(nome).style.display = '';
    else
      document.getElementById(nome).style.display = 'none';
}

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