// 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/tuweb.gif"
URL[0] = "http://www.todoharleys.com/harley/publicidad.html"
TITLE[0] = "Tu web puede estar acá"
TARGET[0] = "_top"

IMG[1] = "http://www.todoharleys.com/img_men/bans/palautordera.gif"
URL[1] = "http://www.todoharleys.com/palautordera/index.html"
TITLE[1] = "Viviendas exclusivas en el Montseny"
TARGET[1] = "_blank"

IMG[2] = "http://www.todoharleys.com/img_men/bans/pinup.gif"
URL[2] = "http://www.todoharleys.com/pinup/index.html"
TITLE[2] = "Pin Up Clothing"
TARGET[2] = "_blank"

function banner3()
{
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>")
}
