// JavaScript Document

// ABRE DIV
function OpenDescInterno(text) {
  if (text.style.display =="") {
    text.style.display = "none";
  }
  else {text.style.display="";
  }
}


// SELECTS
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//POP-UP
function abre(url,janela,larg,alt,scroll,pos1,pos2){  window.open(url,janela,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,top='+pos1+',left='+pos2+',screenY='+pos1+',screenX='+pos2+',width='+larg+',height='+alt);
}