	var win = null;

	function noweokno(url, name, width, height, sb)
	{
		LeftPosition = (screen.width ) ? ( screen.width - width ) / 2 : 100;
		TopPosition = (screen.height ) ? ( screen.height-height ) / 2 : 100;

		settings = 'width=' + width + ',height=' + height + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + sb + ', location=no, directories=no, status=no, menubar=no, toolbar=no, resizable=no';

		win = window.open(url, name, settings);

		if (win.focus)
		{
			win.focus();
		}
	};

	function ukryteokno(url)
	{
		win = window.open(url, '', 'top=10000, left=10000, toolbar=no, location=no');
	};

	function okno_ocen_dowcip_tekstowy(sesja, ht_id, ocena)
	{
		ukryteokno('/pogodzinach/dowcip_ocena.php?sessionid=' + sesja + '&ht_id=' + ht_id + '&ocena=' + ocena);
	};

	function okno_ocen_obrazek(sesja, ho_id, ocena)
	{
		ukryteokno('/pogodzinach/obrazek_ocena.php?sessionid=' + sesja + '&ho_id=' + ho_id + '&ocena=' + ocena);
	};

	function okno_stoisko(sesja, firma, typ, o_id, inne)
	{
		if (firma != '')
		{
			firm = '&firma='+firma;
		}
		else
		{
			firm = '';
		}
		if (typ != '')
		{
			typ = '&typ='+typ;
		}
		if (o_id != '')
		{
			o_id = '&o_id='+o_id;
		}
		noweokno('http://www.tur-targi.pl/stoisko/stoisko.php?sessionid=' + sesja + firm + typ + o_id + inne, 'stoisko_firma_'+firma, 760, 500, 'no');
	};

