/*************************************************
 *                                               *
 * COPYRIGHT (C) 2005 DLF Sp z o.o. DELFNET      *
 *                                               *
 * www.delfnet.pl                                *
 *                                               *
 *************************************************/
var window_count = 0;
var window_array = new Array();

function openWindow(_myname,_src,_width,_height,_left,_top) {
	if (!_left) _left = 5*window_count+5;
	if (!_top) _top = 5*window_count+5;
	window_array[window_count] = window.open(_src,_myname,"top="+_top+",left="+_left+",height="+_height+",width="+_width+",scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no");
	window_array[window_count].focus();
	window_count++;
	return window_count-1;
}

function load2top(url,do_close,obj) {
	if (!obj) obj = window;
	if (obj.opener) {
		load2top(url,do_close,obj.opener);
		if (do_close) obj.close();
	} else obj.document.location.href= url;
}


