function okno(url, szerokosc, wysokosc, nazwa) {
	
	if (wysokosc==0) {
		wysokosc = screen.height - 70;
		od_gory = 0;
	}
	else
		od_gory = screen.height / 2 - wysokosc / 2 -2;

	if ( szerokosc > screen.width ) {
		szerokosc = screen.width - 20;
		wysokosc = wysokosc + 25;
	}

	od_lewej = screen.width / 2 - szerokosc / 2 - 2;
	wndHndl = window.open(url,nazwa, ' width='+ szerokosc +', height=' + wysokosc +',resizable=0, scrollbars=no, menubar=no, top= '+od_gory+' , left= ' +od_lewej+' ');
	wndHndl.focus();
	
	/*
	if (window.open)
		alert('yes');
	else
		alert('no');
	a = window.open("Sample.htm",null,
    "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
    alert(a);
    */
}

function getObj(obj) {
       if (document.all) obj=document.all[ obj ];              
       else if (document.getElementById) obj=document.getElementById( obj );       
       else if (document.layers) obj = document.layers[obj];
       return obj;
};

