function Slide()
{
SLIDES = new slideshow("SLIDES");
SLIDES.timeout = 5000;
SLIDES.prefetch = 2;
SLIDES.repeat = true;
s=new slide();
s.src =  "http://www.eldia.com.ar/publi/motores_resto.jpg";
s.link = "http://www.motoresargentinos.com/";
s.title = "First slide";
SLIDES.add_slide(s);

s=new slide();
s.src =  "http://www.eldia.com.ar/publi/2_epropiedades.jpg";
s.link = "http://www.eldia.com.ar/e-propiedades/";
s.title = "Second slide";
SLIDES.add_slide(s);

s=new slide();
s.src =  "http://www.eldia.com.ar/publi/banner_citybell.jpg";
s.link = "http://www.eldia.com.ar/citybell/";
s.title = "Third slide";
SLIDES.add_slide(s);

for (var i=0; i < SLIDES.slides.length; i++) {

  s = SLIDES.slides[i];
  s.target = "ss_popup";
}
SLIDES.goto_random_slide();
}
function NuevaVentana(documento, ancho, alto, scroll)
        {       
        var TapaWindow=null;
        TapaWindow=window.open(documento,'','resizable=no,menubar=no,location=no,toolbar=no,status=no,scrollbars=' + scroll + ',directories=no,width=' + ancho + ',height=' + alto+ ',top=200,left=200');
        if (TapaWindow){TapaWindow.focus;}
}
