<!--function oeffnen( page_name, win_name, pos_x, pos_y, win_width, win_height ) 	{  	if( page_name == "" )       return;	if( pos_x == -1 )    	pos_x = parseInt( screen.width / 2.0) - (win_width / 2.0);	if( pos_y == -1 )    	pos_y = parseInt( screen.height / 2.0) - (win_height / 2.0);	var win = window.open( page_name, win_name, "width=" + win_width + ",height=" + win_height + ",resizable=no,scrollbars=no,statusbar=no,left=" + pos_x + ",top=" + pos_y );		};	function agblesen( page_name, win_name, pos_x, pos_y, win_width, win_height ) 	{  	if( page_name == "" )       return;	if( pos_x == -1 )    	pos_x = parseInt( screen.width / 2.0) - (win_width / 2.0);	if( pos_y == -1 )    	pos_y = parseInt( screen.height / 2.0) - (win_height / 2.0);	var win = window.open( page_name, win_name, "width=" + win_width + ",height=" + win_height + ",resizable=no,scrollbars=yes,statusbar=no,left=" + pos_x + ",top=" + pos_y );		}	//-->