<!--
//copyright 2002 Grip MultiMedia

//----- START SETTINGS ---------------------------------------------------------------------

// db is an array of link objects. Each link object consists of 2 things: an URL to the site
// the banner is linking to and the URL of the banner itself.


var db = new Array();

db[1 ] = new link("/huur.htm", "<img src=/banners/r_lp0060.gif width=250 height=70 border=0>")
db[2 ] = new link("/huur.htm", "<img src=/banners/r_lp0070.jpg width=250 height=70 border=0>")
db[5 ] = new link("/moret/index.html", "<img src=/banners/r_lp0190.jpg width=250 height=70 border=0>")
db[6 ] = new link("http://www.leidenpromotie.nl/vrijtijd/index.htm", "<img src=/banners/r_lp0170.gif width=250 height=70 border=0>")
db[7 ] = new link("/destad/stadwand/musea/city.htm", "<img src=/banners/r_lp0210.gif width=250 height=70 border=0>")
db[11] = new link("/nieuws/watertaxi.htm", "<img src=/banners/r_lp0290.jpg width=250 height=70 border=0>")
db[12] = new link("<img src=/banners/r_lp300.gif width=250 height=70 border=0>")
db[15] = new link("http://www.leidenpromotie.nl/destad/stadwand/waterst/cssh010.htm", "<img src=/banners/vareninleiden.jpg width=250 height=70 border=0>")
// db[3] = new link("/bestel.htm", "<img src=/banners/r_lp0080.jpg width=250 height=70 border=0>")

//----- END SETTINGS -----------------------------------------------------------------------


function link(where,title) {

	this.where = where;
	this.title = title;
	return this
}


function getRandomLink() {

	n = Math.floor(Math.random() * db.length);


	document.write("<font face='Helectiva' size=4>");
	document.write("<a href='" + db[n].where + "' target='_blank'>" + db[n].title + "</a><br>")
	document.write("</font>");
}


//db[12] = new link("/winkel/index.html", "<img src=/banners/r_lph0300.gif width=250 height=70 border=0>")
//-->
