function img(linkurl, imgurl)
{
    this.imgurl = imgurl;
    this.linkurl = linkurl;
}

var images = new Array();

function nimg(linkurl, imgurl)
{
    images.push(new img(linkurl, imgurl));
}

function nimgs(linkurl, imgarray)
{
    for (i=0; i < imgarray.length; i++) {
	nimg(linkurl, imgarray[i]);
    }
}

nimg(
	"http://boklm.eu/pg/anterne_alfred-wills.html",
	"http://boklm.eu/im/4072800345-s.jpg"
    );
nimg(
	"http://boklm.eu/pg/vitry.html",
	"http://boklm.eu/im/3870028619-s.jpg"
    );
nimg(
	"http://boklm.eu/pg/barcelona_night.html",
	"http://boklm.eu/im/3792953340-s.jpg"
    );
nimg(
	"http://boklm.eu/pg/chartreuse_mar_2009_bw.html",
	"http://boklm.eu/im/3475526123-s.jpg"
    );
nimg(
	"http://boklm.eu/pg/london_jan2009.html",
	"http://boklm.eu/im/3452595268-s.jpg"
    );
nimg(
	"http://boklm.eu/pg/berlin_night_200905.html",
	"http://boklm.eu/im/3914571499-s.jpg"
    );
nimg(
	"http://boklm.eu/pg/tuileries.html",
	"http://boklm.eu/im/4006728212-s.jpg"
    );
nimg(
	"http://boklm.eu/pg/moede.html",
	"http://boklm.eu/im/4065041104-s.jpg"
    );
nimgs(
	"http://boklm.eu/pg/snow_in_paris.html",
	[
	"http://boklm.eu/im/4295927631-s.jpg",
	"http://boklm.eu/im/4300505428-s.jpg",
	]
    );
nimgs(
	"http://boklm.eu/pg/somewhere_barcelona.html",
	[
	"http://boklm.eu/im/4238436990-s.jpg",
	"http://boklm.eu/im/4235074900-s.jpg",
	]
    );
nimgs(
	"http://boklm.eu/pg/paris_by_the_seine.html",
	[
	"http://boklm.eu/im/4006781560-s.jpg",
	"http://boklm.eu/im/4018590015-s.jpg",
	"http://boklm.eu/im/4019578692-s.jpg",
	"http://boklm.eu/im/4023386600-s.jpg",
	"http://boklm.eu/im/4128855751-s.jpg",
	"http://boklm.eu/im/4022841993-s.jpg",
	"http://boklm.eu/im/4039041133-s.jpg",
	"http://boklm.eu/im/4128784427-s.jpg",
	"http://boklm.eu/im/4277768696-s.jpg",
	"http://boklm.eu/im/4009643842-s.jpg",
	]
     );
nimgs(
	"http://boklm.eu/pg/pisa_dec2008.html",
	[
	"http://boklm.eu/im/3492584478-s.jpg",
	"http://boklm.eu/im/3372367249-s.jpg",
	"http://boklm.eu/im/3373068850-s.jpg",
	"http://boklm.eu/im/3373153404-s.jpg",
	]
    );
nimg(
	"http://boklm.eu/pg/paris_gare_de_lest.html",
	"http://boklm.eu/im/4026847763-s.jpg"
   );
nimgs(
	"http://boklm.eu/pg/petite_ceinture_20090913.html",
	[
	"http://boklm.eu/im/3980988922-s.jpg",
	"http://boklm.eu/im/3980265895-s.jpg",
	"http://boklm.eu/im/3981343728-s.jpg",
	]
     );
nimgs(
	"http://boklm.eu/pg/paris_200906.html",
	[
	"http://boklm.eu/im/3735946631-s.jpg",
	"http://boklm.eu/im/3740932316-s.jpg",
	"http://boklm.eu/im/3741027630-s.jpg",
	"http://boklm.eu/im/3744490566-s.jpg"
	]
     );

function getRandom(range) {
    if (Math.random)
	return Math.round(Math.random() * (range-1));
    else {
	var now = new Date();
	return (now.getTime() / 1000) % range;
    }
}

function getImage() {
    if (images.length) {
	var n = getRandom(images.length);
	return images.splice(n,1)[0];
    }
}

function printImage(sep)
{
    var image = getImage();
    if (image) {
	document.writeln("<a href=\"" + image.linkurl + "\"><img border=\"0\" src=\"" + image.imgurl + "\"/></a>" + sep);
    } else {
	document.writeln("-");
    }
}

