var openInNewWin = true;

var banners = new Array();

banners[0] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/bounce_0001.jpg");
banners[1] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/birra.jpg");
banners[2] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/caneCheFuma.jpg");
banners[3] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/dogbetrayed_0001.jpg");
banners[4] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/Japan.jpg");
banners[5] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/purrucchiere.jpg");
banners[6] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/The_lion_slees_tonight_0001.jpg");
banners[7] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/tysonskating.jpg");
banners[8] = new Banner("http://www.carloneworld.it/Humor_010_VIDEO_1.htm", "Video e filmati", "http://www.carloneworld.it/images/4_Humor/Video/video_95x71/Mamma_ha_detto_che_posso_0001.jpg");


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=\"_top\"");
}
document.write(">");
document.write("<img src=\"" + banners[bNum].image + "\" border=\"0\" alt=\"" + banners[bNum].description + "\">");
document.write("</a>");


