Ciao a tutti,
ho un problema, dovrei aggiungere un "credo che si chiami Metatag" ad ogni immagine che ruota in un banner a rotazione quel commento che compare al passaggio del mouse sull'immagine. come posso fare? allego lo script
grazie
<script language="JavaScript">
var openInNewWin = true;
var banners = new Array();
banners[0] = new Banner("http://www.miosito.com/a_cond.html", "Logo '0'", "../Logo_Clienti/Banner120x60_0.gif");
banners[1] = new Banner("http://www.miosito.com/a_cond.html", "Logo '1'", "../Logo_Clienti/Banner120x60_1.gif");
banners[2] = new Banner("http://www.miosito.com/a_cond.html", "Logo '2'", "../Logo_Clienti/Banner120x60_2.gif");
banners[3] = new Banner("http://www.miosito.com/a_cond.html", "Logo '3'", "../Logo_Clienti/Banner120x60_3.gif");
banners[4] = new Banner("http://www.miosito.com/a_cond.html", "Logo '4'", "../Logo_Clienti/Banner120x60_4.gif");
function Banner(url, description, image) {
this.url = url;
this.description = description;
this.image = image;
return this;
}
var bNum = Math.round(Math.random() * (banners.length - 1));
document.write("<a href=\"" + banners[bNum].url + "\"");
if (openInNewWin) {
document.write(" target=\"_blank\"");
}
document.write(">");
document.write("<img src=\"" + banners[bNum].image + "\" border=\"0\" alt=\"" + banners[bNum].description + "\">");
document.write("</a>");
</script></div></td>
</tr>
<td><div align="right">