var imatges = new Array();
//Amb nomes text
imatges[imatges.length] = {src:"", url:"http://www.polseguera.org/tools_for_language_professionals.php", descripcio:"Translation software, dictionaries...", nomestxt:"Tools for Language Professionals"};
imatges[imatges.length] = {src:"", url:"http://www.polseguera.org/cgi-bin/forum/gforum.cgi?forum=24;idioma=English", descripcio:"Language Forum. You can send jokes.", nomestxt:"Jokes"};
//Amb imatges
imatges[imatges.length] = {src:"http://www.polse.org/botons/search.gif", url:"http://polse.org/search/", descripcio:"Search Engine-Directory", nomestxt:""};

function alterna_banners() {
var currIndex = Math.floor(Math.random() * (imatges.length));
if (imatges[currIndex].src) {
var output = "<a href='" + imatges[currIndex].url + "' target=_blank class=links>";
output += "<img src='" + imatges[currIndex].src;
output += "' alt='" + imatges[currIndex].descripcio + "' /><br />" + imatges[currIndex].descripcio + "</a>";
} else {
var output = "<a href='" + imatges[currIndex].url + "' target=_blank" + " title='" + imatges[currIndex].descripcio + "' class=links>";
output += imatges[currIndex].nomestxt + "</a>";
}
return output;
}

