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.autobedrijfscheers.nl'  target='_blank'><img src='uploads/images/sponsors/sponsor-autobedrijfscheers.gif' border=0></a>",
"<a href='http://www.comflair.nl'            target='_blank'><img src='uploads/images/sponsors/sponsor-comflair.gif'           border=0></a>",
"<a href='http://www.garageschel.nl'         target='_blank'><img src='uploads/images/sponsors/sponsor-garageschel.gif'        border=0></a>",
"<a href='http://www.autobedrijfscheers.nl'  target='_blank'><img src='uploads/images/sponsors/sponsor-autobedrijfscheers.gif' border=0></a>",
"<a href='http://www.hoornstra-infrabouw.nl' target='_blank'><img src='uploads/images/sponsors/sponsor-hoornstra.gif'          border=0></a>",
"<a href='http://www.procornea.nl'           target='_blank'><img src='uploads/images/sponsors/sponsor-procornea.gif'          border=0></a>"
);
document.open();
document.writeln(outputs[randomNumber(outputs.length-1)]);
document.close();

