function inserimento(valore) {
document.comment.commento.value=document.comment.commento.value+valore
document.comment.commento.focus()
}

function intercetta() {
    for (var i=0; i<document.links.length; i++)
        if (document.links[i].className=="blank") {
            document.links[i].target="_blank";
        }
}
window.onload = intercetta;


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}