function choices()
{
//elegir el numero de banner que se desean insertar, ej: 6
this[0] = 12;
this[1] ='<a href="http://clk.tradedoubler.com/click?p(57039)a(287784)g(16796424)" target="_blank">Viajes Iberia</a>';
this[2] ='<a href="/tienda/viajes/index.php?vi=vi" target="_blank">Viajes económicos</a>';
this[3] ='<a href="/tienda/viajes/iberia.php?vi=vi" target="_blank">Encuentra tú viaje</a>';
this[4] ='<a href="/tienda/viajes/edream.php?vi=vi" target="_blank">Viajes Edream</a>';
this[5] ='<a href="/tienda/viajes/rumbo.php?vi=vi" target="_blank">Viaja con Rumbo</a>';
this[6] ='<a href="/tienda/viajes/muchoviaje.php?vi=vi" target="_blank">Mucho Viaje</a>';
this[7] ='<a href="http://clk.tradedoubler.com/click?p(69345)a(287784)g(17646172)" target="_blank">Autobus Alsa</a>';
this[8] ='<a href="http://clk.tradedoubler.com/click?p(122310)a(287784)g(18099542)" target="_blank">Autobus Avanzbus</a>';
this[9] ='<a href="/tienda/viajes/destinia.php?vi=vi" target="_blank">Tú destino a un click.</a>';
this[10] ='<a href="/tienda/viajes/acorhotels.php?vi=vi" target="_blank">Hoteles Acor</a>';
this[11] ='<a href="/tienda/alimentos_bebidas/index.php?al=al" target="_blank">Selección: Vinos y Licores</a>';
this[13] ='<a href="http://clk.tradedoubler.com/click?p=15407&a=287784&g=0&url=http://www.edreams.es/edreams/espanol/rural/index.jhtml" target="_blank">Turismo rural</a>';
this[14] ='<a href="http://clk.tradedoubler.com/click?p(57039)a(287784)g(16796424)" target="_blank">Viaja con Iberia</a>';
//si se pone arriba ej: 7 aqui añadir this[7]=' codigo ';
}
function popUpBanner(list)
{	
	var today = new Date();
	var choiceInstance = new choices();
	var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
}
function grabBanner()
{
	var today = new Date();
	var choiceInstance = new choices();
	var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
	return Banner;
}
document.writeln(grabBanner());
