// JavaScript Document
<!--
//  Script:       Random Image
 //  Version:      1.0
//  Last Updated: June 12th 1998
//  Author:       Scott Brady
//  Org:          HotSource HTML Help
//  Email:        webmaster@sbrady.com
//  Website:      http://www.sbrady.com/hotsource/
					
var b1dis = "<a href=\"";
var bdis = "\"><img src=\"";
var edis = " width=\"536\" height=\"194\" alt=\"Digital Lab\" border=\"0\"></a>";
var rnumb = "";
var img = "";

rnumb += Math.floor(Math.random()*6);
img = rnumb;
if (img == "0") {
document.write(b1dis+ "catalogo/plotters/flatbed.htm" +bdis+ "banner/flatbed.gif\"" +edis);
}
if (img == "1") {
document.write(b1dis+ "catalogo/plotters/3300.htm" +bdis+ "banner/plotter1.gif\"" +edis);
}
if (img == "2") {
document.write(b1dis+ "catalogo/plotters/medios_materiales.htm" +bdis+ "banner/medios.gif\"" +edis);
}
if (img == "3") {
document.write(b1dis+ "catalogo/plotters/1900.htm" +bdis+ "banner/plotter2.gif\"" +edis);
}
if (img == "4") {
document.write(b1dis+ "bolsadetrabajo.htm" +bdis+ "banner/bolsa.gif\"" +edis);
}
if (img == "5") {
document.write(b1dis+ "contacto.htm" +bdis+ "banner/financiamento.gif\"" +edis);
}
//-->
