<!--

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 ZoomNews(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()
}

//-->

