<!--
function open_img_win(win_pos_x,win_pos_y,win_width_end,win_height_end,img_width,img_height,domain,path,file)

{
	var win_startpos_x = win_pos_x;
	var win_startpos_y = win_pos_y;
	var win_width = 10;
	var win_height = 10;
	var step_growup = 5;

	if(win_startpos_x < 1)
	{
		win_startpos_x = 400;
	}
	if(win_startpos_y < 1)
	{
		win_startpos_y = 300;
	}

	if(win_width_end < 0)
	{
		win_width_end = 440;
	}
	if(win_height_end < 0)
	{
		win_height_end = 340;
	}

	img_win = window.open("","win_foto","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=10,height=10,titlebar=0");
  /* alert("Fenster jetzt zu StartPos X=" + win_startpos_x + " / Y=" + win_startpos_y + " bewegen...:"); */
  img_win.moveTo(win_startpos_x,win_startpos_y);
  /* alert("Fenster auf Startgroesse X=" + win_width + " / Y=" + win_height + " setzen"); */
  img_win.resizeTo(win_width,win_height);

  for (win_width; win_width <= win_width_end; win_width = win_width + step_growup)
  {
     img_win.resizeTo(win_width,win_height);
  }
  for (win_height; win_height <=win_height_end; win_height = win_height + step_growup)
  {
     img_win.resizeTo(win_width,win_height);
  }

	img_win.document.writeln('<!DOCTYPE HTML PUBLIC "(C) TIMS" "www.TIMS.de">');
	img_win.document.writeln('<HTML>');
	img_win.document.writeln('<HEAD> <TITLE>Fotogalerie Mandelholz</TITLE>');
	img_win.document.writeln('	<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
	img_win.document.writeln('	<META HTTP-EQUIV="Pragma" CONTENT="no-cache">');
	img_win.document.writeln('	<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
	img_win.document.writeln('	<LINK HREF="http://src.' + domain + '/css/std.css" REL="stylesheet" TYPE="text/css">');
	img_win.document.writeln('</HEAD>');
	img_win.document.writeln('<BODY CLASS="page_std">');
	img_win.document.writeln('	<TABLE CLASS="tab_hide">');
	img_win.document.writeln('		<TR>');
	img_win.document.writeln('			<TD CLASS="tab_data" STYLE="text-align:center;vertical-align:middle;">');
	img_win.document.writeln('				<A HREF="javascript:self.close();"><IMG SRC="http://lib.' + domain + path + file + '" WIDTH="' + img_width + '" HEIGHT="' + img_height + '" CLASS="img_foto" BORDER="0"></A>');
	img_win.document.writeln('			</TD>');
	img_win.document.writeln('		</TR>');
	img_win.document.writeln('	</TABLE>');
	img_win.document.writeln('</BODY>');
	img_win.document.writeln('</HTML>');

  img_win.focus();
}
// -->
