<!--
top_banurl = new Array;
top_banimageUrl=new Array;

top_banimageUrl[0] = "link/link_studio2c.gif";
top_banurl[0] = "http://www.studio2c.net";

//top_banimageUrl[1] = "link/link_studiocieffe.gif";
//top_banurl[1] = "http://www.studiocieffesrl.it";

top_banimageUrl[1] = "link/link_piloti.gif";
top_banurl[1] = "http://www.arcanto.it/piloti";

top_banimageUrl[2] = "link/link_karovana.gif";
top_banurl[2] = "http://www.karovana.it";

affichetop = false;

function AffichePubtop()
   {
   if(!affichetop)
      {
      numimagetop= Math.round(Math.random()*(top_banurl.length-1));
      document.write ('<A HREF="#" onClick="window.open(top_banurl[numimagetop],\'_blank\')"><IMG SRC="' + top_banimageUrl[numimagetop] + '" width=180 BORDER=0 NAME=top_banpub></A>')
      affichetop = true;
      }
   else
      {
      if(numimagetop == (top_banurl.length-1))
         numimagetop = 0;
      else
         numimagetop++;
      document.top_banpub.src=top_banimageUrl[numimagetop];
      }
   setTimeout("AffichePubtop()",3000);
   }

AffichePubtop();

//-->