function banners_on(){ 
banners = new Array();
banners[0] = "imatges/Banners/Farmacia_Guerrero_Andorra_banner_EM.swf";
banners[1] = "imatges/Banners/Farmacia_Guerrero_Andorra_banner_GM.swf";

totalbanners = banners.length;
var ahora = new Date()
var segundos = ahora.getSeconds()
var ad = segundos % totalbanners;
seleccionado = banners[ad];

document.write('<img src="imatges/pub.gif" width="430" height="9" /><EMBED src=' + seleccionado + ' loop=true quality=high width=430 height=55 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" wmode="opaque"></EMBED>');
} 