

// JavaScript Document

function loadImage(img){
news0 = new Image();
            
news0.src = "immagini/sponsor.gif"; 
destUrl = '../palazzomandina/index.htm';

if(img == 'news'){
	document['foto'].src = news0.src;
  }

if(img == 'caso'){
  var rnd = (Math.random() * 8);
  rnd=Math.floor(rnd);
  news0.src = eval("'animazioni/copertina-' + rnd +'.jpg'");
  document['foto'].src = news0.src;
  destUrl = 'http\://www.terracilento.it/albums/album-home/album-home.htm';
  }
}

/* ------------------------------------------------------------------------------------- */

function goUrl()
{
  document.location.href = destUrl;
}