ar = new Array();

//set the numer of headlines you want to display

numheadlines = 06;
target = ' TARGET="_blank" ';
if(window.arURL && arURL.length >= 0) {

if(arURL.length < numheadlines) numheadlines = arURL.length; 

// Here you can set the width, background, colour, border of the table

nStr = '<center><TABLE CELLPADDING=8 CELLSPACING=0 BGCOLOR="#ffffff" BORDER=1>' +
'<TR><TD ALIGN=CENTER><H3>Recent Results</H3></TD></TR></center>\n'
+ '<TR><TD>\n';

for (i=0; i<arURL.length; i++) {
ar[i] = new Array(arURL[i],arTXT[i]);
}

for (var i = 0; i < numheadlines; i++) {
newsStr = '<A CLASS="headlines" '
                + target
		+ 'HREF="' + ar[i][0] + '">'
		+ ar[i][1] + '</A>'
		
// Here you can set the font size auf the result links	
		
nStr += "<font face=arial size=2>" + newsStr + "<br></font>\n\n";
}

nStr += '<TABLE WIDTH=145 BORDER=0 CELLPADDING=0 CELLSPACING=0>\n'
+ '<TR><TD ALIGN=CENTER VALIGN=TOP><hr width=80%>'
+ '<A TARGET="_blank" HREF="http://www.fechten.de">'
+ 'www.fechten.de</a>\n'
+ '</TD></TR></TABLE></TD></TR></TABLE>\n';
document.write(nStr)
}
