var titulos = new Array();
var direcciones = new Array();
var formatos = new Array();
var presentaciones = new Array();
var escalas = new Array();
var rotaciones = new Array();
var colores = new Array();
var fondos = new Array();
var iluminaciones = new Array();

titulos[1] = "&aacute;cido disulfuroso";
direcciones[1] = "http://www.luventicus.org/laboratorio/ICI_SanLorenzo/metabisulfitodesodio/especies/H2S2O5.mol";
formatos[1] = "x-mol";
presentaciones[1] = "ball-stick";
escalas[1] = "0.8";
rotaciones[1] = "x";
colores[1] = "";
fondos[1] = "";
iluminaciones[1] = "";

titulos[2] = "Bal&oacute;n Bucky";
direcciones[2] = "http://www.luventicus.org/articulos/02BdD002/vii.zip";
formatos[2] = "x-mol";
presentaciones[2] = "ball-stick";
escalas[2] = "1";
rotaciones[2] = "x";
colores[2] = "atom";
fondos[2] = "#000000";
iluminaciones[2] = "255,8,8";

titulos[3] = "cafe&iacute;na";
direcciones[3] = "http://www.luventicus.org/articulos/02BdD002/iii.zip";
formatos[3] = "x-mol";
presentaciones[3] = "ball-stick";
escalas[3] = "1";
rotaciones[3] = "x";
colores[3] = "atom";
fondos[3] = "#000000";
iluminaciones[3] = "25,25,25";

titulos[4] = "ferrodoxina";
direcciones[4] = "http://www.luventicus.org/articulos/02BdD002/i.zip";
formatos[4] = "x-pdb";
presentaciones[4] = "backbone";
escalas[4] = "1";
rotaciones[4] = "x";
colores[4] = "residue";
fondos[4] = "#000000";
iluminaciones[4] = "255,8,8";

var rn = Math.floor(Math.random()*titulos.length);
if (rn == 0) {rn = 1}
document.writeln("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td>");
document.writeln("<APPLET ARCHIVE=\"../Chemis3D.jar\" CODE=\"Chemis3D.class\" WIDTH=\"140\" HEIGHT=\"140\" ALT='&iexcl;Hay un problema! Verifique las opciones de seguridad' codebase=\"http://www.luventicus.org/animaciones/moleculas/\">Esta p$aacute;gina hace uso de un <i>applet</i> de Java. Para usarlo, usted debe habilitar el uso de Java.");
document.writeln("<PARAM NAME=\"model\" VALUE='"+direcciones[rn]+"'>");
document.writeln("<PARAM NAME=\"format\" VALUE='"+formatos[rn]+"'>");
document.writeln("<PARAM NAME=\"display\" VALUE='"+presentaciones[rn]+"'>");
document.writeln("<PARAM NAME=\"scale\" VALUE='"+escalas[rn]+"'>");
document.writeln("<PARAM NAME=\"spin\" VALUE='"+rotaciones[rn]+"'>");
document.writeln("<PARAM NAME=\"color\" VALUE='"+colores[rn]+"'>");
document.writeln("<PARAM NAME=\"background\" VALUE='"+fondos[rn]+"'>");
document.writeln("<PARAM NAME=\"lighting\" VALUE='"+iluminaciones[rn]+"'>");
document.writeln("</APPLET>");
document.writeln("    </td>");
document.writeln("  </tr>");
document.writeln("  <tr>");
document.writeln("    <td>");
document.writeln("      <p  class=\"nota\">"+titulos[rn]+"</p></td>");
document.writeln("  </tr>");
document.writeln("</table>");