var text_st = new Array(


"&nbsp;<BR><img src='sport/small-images/logo_AFC.gif' width='80' height='60' border='0'><BR>AFC Foundation: 1954",
"&nbsp;<BR><img src='sport/small-images/logo_CAF.gif' width='80' height='80' border='0'><BR>CAF Foundation: 1957",
"&nbsp;<BR><img src='sport/small-images/logo_CONCACAF.gif' width='80' height='70' border='0'><BR>CONCACAF Foundation: 1961",
"&nbsp;<BR><img src='sport/small-images/logo_CONMEBOL.gif' width='80' height='80' border='0'><BR>CONMEBOL Foundation: 1916",
"&nbsp;<BR><img src='sport/small-images/logo_OFC.gif' width='80' height='80' border='0'><BR>OFC Foundation: 1966",
"&nbsp;<BR><img src='sport/small-images/logo_UEFA.gif' width='80' height='80' border='0'><BR>UEFA Foundation: 1954",
"&nbsp;<BR><img src='sport/small-images/nba.gif' width='80' height='60' border='0'><BR>National Basketball Association",
"&nbsp;<BR><img src='sport/small-images/nfl.gif' width='80' height='60' border='0'><BR>National Football League"
);


var l = text_st.length;
var dt = new Date;
var k = dt.getYear ( ) * 10000 + dt.getMonth ( ) * 1000 + dt.getDate ( );
//alert ( l );
//alert ( k % l );
var rnd_no = k % l;//Math.round((l-1)*Math.random());
//var rnd_no = Math.round((l-1)*Math.random());
document.write(text_st[rnd_no]);



