function showRealFoto(path, width_foto, height_foto, name)
{
  if (width_foto > screen.width)
  {
  	width_foto = screen.width - 20;
  }

  if (height_foto > screen.height)
  {
  	height_foto = screen.height - 50;
  }
  
  window_str = "width=" + width_foto + ",height=" +	height_foto +
				",status=no,toolbar=no,menubar=no,scrollbars=yes";
  myWin= open("", "displayWindow", window_str);
  myWin.document.open();
  myWin.document.write("<html><head><title>" + name + "</title></head>");
  myWin.document.write("<body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 rightmargin=0 bgcolor=#ffffff><IMG src = " + path + " border='0' align='left' valign='top' hspace=0 vspace=0>" + "</body></html>");
  myWin.document.close();
}

