<!--

function menu(lin,pos,cmd) {
  var I;
  var L;

  for (I=1 ; I<=document.images.length; I=I+1)
   if (document.images[I-1].name.substr(0,8)=='Immagine')
     { L=parseInt(document.images[I-1].name.substr(8,1));

       if (L==pos) eval('document.Immagine' + L + '.src="images/' + lin + '/mnu0' + L + '_ac.gif"');   
       if (L!=pos) eval('document.Immagine' + L + '.src="images/' + lin + '/mnu0' + L + '_sp.gif"');
     }
}

function smenu(lin,pos,cmd) {
  var I;
  var L;

  for (I=1 ; I<=document.images.length; I=I+1)
   if (document.images[I-1].name.substr(0,9)=='SImmagine')
     { L=parseInt(document.images[I-1].name.substr(9,1));

       if (L==pos) eval('document.SImmagine' + L + '.src="images/' + lin + '/sme0' + L + '_ac.gif"');   
       if (L!=pos) eval('document.SImmagine' + L + '.src="images/' + lin + '/sme0' + L + '_sp.gif"');
     }
}

function ZoomImmagine(Immagine,Width,Height)
{ 
  Zoom=window.open(Immagine,"Zoom","menubar=no personalbar=no resizable=no scrollbars=yes status=no toolbar=no");
  Zoom.resizeTo(Width+50,Height+85);
  Zoom.moveTo((screen.width - Width)/2,(screen.height - Height)/2);
  Zoom.focus();
}

function goBack()
{
  if (parent.history.length > 0) parent.history.back()
}

//-->
