banners = new Array(3);

banners[0] = "<a href='http://www.hope.org.br/' target='_blank'><IMG src='http://www.tonelada.org/images/banner_hope.gif' border='0'></a>";
banners[1] = "<a href='http://www.ibcc.org.br/ae_mama.asp' target='_blank'><IMG src='http://www.tonelada.org/images/banner_cancer.gif' border='0'></a>";
banners[2] = "<a href='http://www.senna.org.br/' target='_blank'><IMG src='http://www.tonelada.org/images/banner_senna.gif' border='0'></a>";

//calculate a random index
index = Math.floor(Math.random() * banners.length);

//display the banner
document.write(banners[index]);