
function openNews(dest) {
  var winNews;
  winNews=window.open(dest,"news","width=350,height=300,scrollbars=yes,toolbar=no,directories=no,status=no,menubar=no");
}

function CreaTabella(testo) {
  var righe=testo.length/3; 
  for (var i=0; i<righe; i++) {
    k1="";
    k2="";
    if (testo[3*i+2]!="") {
      k1="<a class=\"link\" href=\"javascript:goLink('" + testo[3*i+2] + "')\">";
      k2="</a>";
    }
    document.write("<tr bgcolor=\"" + getColor(i) + "\"" + ">");
    document.write("  <td valign=\"top\">" + testo[3*i] + "</td>");
    document.write("  <td>" + k1 + testo[3*i+1] + k2 + "</td>");
    document.write("</tr>");
  }
}

function getColor(line) {
  if (line%2 == 0)
    return "#FBFEC2";
  else
  	 return "#FEEFC2";
}

function goLink(url) {
  window.opener.top.right.location.href=url;
}
