<!--

function menu(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/mnu0' + L + '_ac.gif"');   
       if (L!=pos) eval('document.Immagine' + L + '.src="images/mnu0' + L + '_sp.gif"');
     }
}

function ZoomImmagine(URL,Width,Height)
{ 
  Zoom=window.open(URL,"Zoom","width=" + Width + " height=" + Height + " menubar=no personalbar=no resizable=no scrollbars=no status=no toolbar=no");
  Zoom.focus();
  Zoom.resizeTo(Width+30,Height+55);
  Zoom.moveTo((screen.width - Width)/2,(screen.height - Height)/2);
}

function ZoomAppuntamento(URL,Width,Height)
{ 
  Zoom=window.open(URL,"Zoom","width=" + Width + " height=" + Height + " menubar=no personalbar=no resizable=no scrollbars=yes status=no toolbar=no");
  Zoom.focus();
  Zoom.resizeTo(Width+30,Height+55);
  Zoom.moveTo((screen.width - Width)/2,(screen.height - Height)/2);
}


function goBack()
{
  if (parent.history.length > 0) parent.history.back()
}

//-->

