// -------------------------------------------
// Funciones para mostrar encuestas
// -------------------------------------------

encuesta = new Array;

encuesta[0] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=190 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=FORM&archivo=monedas2.txt&bgcolor=ffffff&align=left&width=280'></iframe>";
encuesta[1] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=190 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=FORM&archivo=billetes.txt&bgcolor=ffffff&align=left&width=280'></iframe>";
encuesta[2] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=190 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=FORM&archivo=billete200.txt&bgcolor=ffffff&align=left&width=280'></iframe>";
encuesta[3] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=190 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=FORM&archivo=falsos.txt&bgcolor=ffffff&align=left&width=280'></iframe>";

cerrada = new Array;

cerrada[0] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=290 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=nominados.txt&bgcolor=ffffff&align=left&width=280'></iframe>";
cerrada[1] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=210 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=tamanios.txt&bgcolor=ffffff&align=left&width=280'></iframe>";
cerrada[2] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=190 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=conmemorativo.txt&bgcolor=ffffff&align=left&width=280'></iframe>";
cerrada[3] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=190 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=mujer.txt&bgcolor=ffffff&align=left&width=280'></iframe>";
cerrada[4] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=250 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=conmemorativa.txt&bgcolor=ffffff&align=left&width=260'></iframe>";
cerrada[5] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=260 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=deporte.txt&bgcolor=ffffff&align=left&width=280'></iframe>";
cerrada[6] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=210 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=personalidades.txt&bgcolor=ffffff&align=left&width=260'></iframe>";
cerrada[7] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=210 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=monedas.txt&bgcolor=ffffff&align=left&width=300'></iframe>";
cerrada[8] = "<iframe allowTransparency=true frameborder=0 scrolling=no width=100% height=160 src='http://www.billetesargentinos.com.ar/cgi-bin/encuestas/encuestas.cgi?modo=CLOSE&archivo=maradona.txt&bgcolor=ffffff&align=left&width=260'></iframe>";


// -------------------------------------------
// Muestra las encuestas abiertas
// -------------------------------------------

function mostrarAbiertas()
{
    document.write("<table class=tabla cellpadding=10 cellspacing=0 border=0 width=100%>");
    document.write("<tr valign=top>");
    
    for (i=0; i<encuesta.length; i++)
    {
       if (i>0 && i%2==0)
       {
           document.write("</tr><tr valign=top>");
       }
       
       document.write("<td width=50%>" + encuesta[i] + "</td>");
    }
    document.write("</tr>");
    document.write("</table>");
}

// -------------------------------------------
// Muestra las encuestas cerradas
// -------------------------------------------

function mostrarCerradas()
{
    document.write("<table class=tabla cellpadding=10 cellspacing=0 border=0 width=100%>");
    document.write("<tr valign=top>");
    
    for (i=0; i<cerrada.length; i++)
    {
       if (i>0 && i%2==0)
       {
           document.write("</tr><tr valign=top>");
       }
       
       document.write("<td width=50%>" + cerrada[i] + "</td>");
    }
    
    if (i%2 == 1)
    {
       document.write("<td width=50%>&nbsp;</td>");
    }
    
    document.write("</tr>");
    document.write("</table>");
}

// -------------------------------------------
// Muestra la encuesta del dia
// -------------------------------------------

function mostrarEncuesta()
{
    hoy = new Date();
    ini = new Date(hoy.getYear(),0,1);
    dif = hoy - ini + 1;
    dia = dif/1000/60/60/24;
    sem = 1 + Math.floor(dia/7);
    
    d = new Date();
    m = d.getMonth();
    i = Math.floor(sem%encuesta.length);

    document.write(encuesta[i].replace("left","center"));
}


