function randomNumber(maxValue, minValue) {
//If minValue/maxValue is missing make it/them 0/1
if (minValue == null) minValue = 0;
if (maxValue == null) maxValue = 1;

//Return the number
return (Math.round(maxValue * Math.random()) + minValue); 
}
var outputs = new Array(
"<a href='http://www.bordbusters.nl'   target='_blank'><img src='/uploads/images/reclameblok/bordbusters.JPEG' border=0 height=80 width=160 ></a>",

"<a href='http://www.deklokdranken.nl'   target='_blank'><img src='/uploads/images/reclameblok/deklok.gif' border=0 height=80 width=160></a>",

"<a href='http://www.hoornstra.nl'   target='_blank'><img src='/uploads/images/reclameblok/hoornstra.png' border=0 height=80 width=160></a>",

"<a href='http://www.pepsi.nl'   target='_blank'><img src='/uploads/images/reclameblok/pepsi.JPEG' border=0 height=80 width=160></a>",

"<a href='http://www.garageschel.nl'   target='_blank'><img src='/uploads/images/reclameblok/schel.png' border=0 height=80 width=160></a>",

"<a href='http://www.smeltink.nl'   target='_blank'><img src='/uploads/images/reclameblok/smeltink.png' border=0 height=80 width=160></a>",

"<a href='http://www.smeltink.nl'   target='_blank'><img src='/uploads/images/reclameblok/smeltink.png' border=0 height=80 width=160></a>",

"<a href='http://www.smeltink.nl'   target='_blank'><img src='/uploads/images/reclameblok/smeltink.png' border=0 height=80 width=160></a>"
);
// LET OP DE KOMMA ACHTER DE LAATSTE URL
document.open();
document.writeln(outputs[randomNumber(outputs.length-1)]);
document.close();


