// Liberia de ayuda
// Contiene las instrucciones para la impresion de banners aleatorios.
// Contiene tambien las direcciones de los ficheros anunciables.
// (c) 2000 - Anc Comunicación publicitaria (http://www.ancpublicidad.com)
// -------------------------------------------------------------------

IMG = new Array();
URL = new Array();
TITLE = new Array();
TARGET = new Array();

IMG[0] = "http://www.todoharleys.com/img_men/bans/pins.gif"
URL[0] = "http://www.todoharleys.com/pinsmoteros/index.html"
TITLE[0] = "Pins y llaveros personalizados"
TARGET[0] = "_blank"

IMG[1] = "http://www.todoharleys.com/img_men/bans/camping.gif"
URL[1] = "http://campingpuertadelaalpujarra.com"
TITLE[1] = "Camping motero en Granada"
TARGET[1] = "_blank"

IMG[2] = "http://www.todoharleys.com/img_men/bans/taxi.gif"
URL[2] = "http://www.todoharleys.com/taxi/index.html"
TITLE[2] = "Reserva tu taxi en Barcelona"
TARGET[2] = "_blank"

IMG[3] = "http://www.todoharleys.com/img_men/bans/millacustom.gif"
URL[3] = "http://www.todoharleys.com/millacustom/index.html"
TITLE[3] = "Tu tienda Custom en Madrid"
TARGET[3] = "_blank"

IMG[4] = "http://www.todoharleys.com/img_men/bans/ruta66.gif"
URL[4] = "http://www.todoharleys.com/customruta66/index.html"
TITLE[4] = "Tu tienda custom"
TARGET[4] = "_blank"

IMG[5] = "http://www.todoharleys.com/img_men/bans/escapes1.gif"
URL[5] = "http://www.todoharleys.com/escapes_custom/index.html"
TITLE[5] = "Escapes para motos custom y Harley Davidson"
TARGET[5] = "_blank"


function banner()
{
now = new Date();
Number = (now.getSeconds())%IMG.length
document.write("<A HREF=\"" + URL[Number] + "\" TARGET=\"" + TARGET[Number] + "onMouseOver=\"window.status='" + TITLE[Number] + "'; return true\" onMouseOut=\"window.status=''; return true\"><IMG SRC=\"" + IMG[Number] + "\" ALT=\"" + TITLE[Number] + "\" BORDER=\"0\"></A><BR>")
}
