<!--
function open_win_page(kontakt_art,kontakt_fuer,win_pos_x,win_pos_y,step_growup_x,step_growup_y,win_width_end,win_height_end,domain,path,file,win_name)

{
	var win_startpos_x = win_pos_x;
	var win_startpos_y = win_pos_y;
	var win_width = 50;
	var win_height = 50;
	var tld = window.location.host;
	/* alert(tld); */
	/*
	if(step_growup_x < 1)
	{
		step_growup_x = 10;
	}
	if(step_growup_y < 1)
	{
		step_growup_y = 10;
	}

	if(win_startpos_x < 1)
	{
		win_startpos_x = 10;
	}
	if(win_startpos_y < 1)
	{
		win_startpos_y = 50;
	}

	if(win_width_end < 0)
	{
		win_width_end = 600;
	}
	if(win_height_end < 0)
	{
		win_height_end = 400;
	}
	*/

	page_win = window.open("",win_name,"toolbar=0,titlebar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=1,width=10,height=10");
	/*
	page_win.document.writeln('<!DOCTYPE HTML PUBLIC "(C) TIMS" "www.TIMS.de">');
	page_win.document.writeln('<HTML>');
	page_win.document.writeln('<HEAD>');
	page_win.document.writeln('<TITLE>' + kontakt_art + ' &uuml;ber ' + tld + 'f&uuml;r ' + kontakt_fuer + '</TITLE>');
	page_win.document.writeln('<LINK HREF="http://src.' + tld + '/css/de/std.css" REL="stylesheet" TYPE="text/css">');
	page_win.document.writeln('</HEAD>');
	page_win.document.writeln('<BODY CLASS="PgHome">');
	page_win.document.writeln('<TABLE CLASS="TbStd" STYLE="margin:10px;width:100%;">');
	page_win.document.writeln('<TR>');
	page_win.document.writeln('<TD CLASS="TbzTxtDt" STYLE="text-align:center;padding:20px;"> <FONT CLASS="hl4">' + kontakt_art + '<BR><BR>' + kontakt_fuer + '</FONT><BR><BR>');
	page_win.document.writeln('<IMG SRC="http://lib.tims.de/foto/hotel/rezeption_check_in_gast_01_mittel.jpg" WIDTH="310" HEIGHT="337" BORDER="0" CLASS="ImgFotoR">');
	page_win.document.writeln('</TD>');
	page_win.document.writeln('</TR>');
	page_win.document.writeln('</TABLE> </BODY>');
	page_win.document.writeln('</HTML>');
	*/
	/* Win aufbauen */
  page_win.moveTo(win_startpos_x,win_startpos_y);
  page_win.resizeTo(win_width,win_height);
  for (win_width; win_width <= win_width_end; win_width = win_width + step_growup_x)
  {
     page_win.resizeTo(win_width,win_height);
  }
  for (win_height; win_height <=win_height_end; win_height = win_height + step_growup_y)
  {
     page_win.resizeTo(win_width,win_height);
  }
	page_win.window.location.href = "http://" + domain + path + file;
}
// -->
