function f_out(obj) {
  document.body.style.cursor='arrow;';
  obj.style.background = "#AAAAAA";
  return false;
}

function f_over(obj) {
  document.body.style.cursor='pointer';
  obj.style.background = "#99ffcc";
  return false;
}
function f_stagione(pagina, num) {
  window.open(pagina + num + '.html', '_self');
  return false;
}
function f_episodio(n_episodio_ing, n_episodio_ita, titolo_ing, titolo_ita, imgW, imgH, img, trama) {
  document.writeln("<tr>");
  document.writeln("  <td colspan=2>");
  document.writeln("    <table cellspacing=0 cellpadding=5>");
  document.writeln("      <tr>");
  document.writeln("        <td width=60 align=center class=epBordo_totale bgcolor=#AECEE1 title=\"Numero di produzione dell'episodio\" nowrap><b>" + n_episodio_ing + "</b></td>");
  document.writeln("        <td width=101 align=center class=epBordo_top_bottom bgcolor=#99ffcc title=\"Sequenza episodio\" nowrap><b>" + n_episodio_ita + "</b></td>");
  document.writeln("        <td width='100%' class=epBordo_totale bgcolor=#AECEE1 nowrap><b>" + titolo_ita + "</b></td>");
  document.writeln("      </tr>");
  document.writeln("    </table>");
  document.writeln("  </td>");
  document.writeln("</tr>");
  document.writeln("<tr>");
  document.writeln("  <td valign=top>");
  document.writeln("    <table align=center cellspacing=0 cellpadding=0 class=epBordo_totale>");
  document.writeln("      <tr>");
  document.writeln("        <td><img src='immagini/" + img + "' width=" + imgW + " height=" + imgH + " hspace=0 border=0 align=right></td>");
  document.writeln("      </tr>");
  document.writeln("    </table>");
  document.writeln("  </td>");
  document.writeln("  <td valign=top>");
  document.writeln("    <P align=justify class=epTrama>");
  document.writeln("      " + trama);
  document.writeln("    </p>");
  document.writeln("  </td>");
  document.writeln("</tr>");
  document.writeln("<tr>");
  document.writeln("  <td colspan=3>");
  document.writeln("    <table cellspacing=0 cellpadding=4 width='100%'>");
  document.writeln("      <tr>");
  document.writeln("        <td width='100%' nowrap class=epTitolo_originale align=center center>");
  document.writeln("          Titolo originale: &nbsp;" + titolo_ing);
  document.writeln("        </td>");
  document.writeln("      </tr>");
  document.writeln("    </table>");
  document.writeln("  </td>");
  document.writeln("</tr>");
}
