var q = new Array();
q[0] = "";
q[1] = "";



var u = new Array();
u[0] = "http://www.standaard.be/extra/espresso/";
u[1] = "http://www.standaard.be/extra/espresso/";


function showAd() {
	var i = Math.round(Math.random() * (q.length-1));
	var s = '<TABLE width="100%" align="center"><TR><TD vAlign="top" align="center">';
	s += '<A href="' + u[i] + '">';
	s += '<IMG src="/info/adverteren/tekstadvertenties/espresso' + (i+1) + '.gif" border=0>';
	s += '</A></TD></TR>';
	s += '<TR><TD vAlign="top" align="center">';
	s += '<A href="' + u[i] + '">';
	s += '<b><font color="#ff0000">';
	s += q[i];
	s += '</font></b></a></TD></TR></TABLE>';
	document.write(s);
}

