  // JavaScript Document
  <!--
    /* muestra video en formato rm */
    var archivo = new Array();
    var titulo  = new Array();
    var imagen  = new Array();
    /* video 00-01 */
    archivo[0] = "videos/trailer0.html";
    titulo[0]  = "Trailer de Solos";
    imagen[0]  = "";
    //
    archivo[1] = "videos/trailer1.html";
    titulo[1]  = "Trailer de Solos";
    imagen[1]  = "galeria-video/video_home_01.jpg";
    /* video 02 */
    archivo[2] = "videos/trailer2.html";
    titulo[2]  = "Denisse Malebr&aacute;n &quot;Ll&eacute;vame&quot;";
    imagen[2]  = "galeria-video/video_home_02.jpg";
    /* video 03 */
    archivo[3] = "videos/trailer3.html";
    titulo[3]  = "Making of &quot;Ll&eacute;vame&quot;";
    imagen[3]  = "galeria-video/video_home_03.jpg";

    /* muestra imagen que no hay plugin instalado */    
    if (!detectarRealPlayerPlugin())
    {
      //alert('detectarRealPlayerPlugin() '+detectarRealPlayerPlugin());
      var largo = archivo.length;
      for (var i=0;i<largo;i++)
      {
        archivo[i] = "videos/no-real-grande.html";
      }
    }
    /* determina si el plugin esta presente en el browser */
    function detectarRealPlayerPlugin()
    {
      if(canDetectPlugins())
      {
        return detectReal();
      } else {
        return detectReal();
      }
    }
  //-->