function zoomphoto (photo_file, photo_height, photo_width)
{
  photoWindow_properties = "menubar=0,toolbar=0,location=0,directories=0,status=0,resizable=0,width="+photo_width+",height="+photo_height+",scrollbars=0,titlebar=0";
  photoWindow = window.open("", "photoWindowName", photoWindow_properties);
  photoWindow.document.writeln("<HTML><HEAD><TITLE>Финансовые показатели РЛК</TITLE></HEAD><BODY style=\"margin: 0em;\">");
  photoWindow.document.writeln("<a href=\"javascript:close();\"><IMG src=\"img/"+photo_file+"\" border=\"0\"></a>");
  photoWindow.document.writeln("</BODY></HTML>");
  photoWindow.focus();
  return photoWindow;
}

function GetObjects ( type )
{
  for (j = document.calcform.obj.options.length; j >= 0; j--)
	{ document.calcform.obj.options [j] = null; }

  j = 0;
  for (i = 0; i < objects.length; i++)
	{
	if (objects[i][0] == type)
		{
		NewOption = new Option (objects[i][1], objects[i][2]);
  		document.calcform.obj.options [j] = NewOption;
		j++;
		}
	}
}
