	function setVal2ElHTML(elementName, elementValue) {
		var el = $(elementName);
		if (el != undefined) {
			el.innerHTML = elementValue;
		}
	}

	var okno = "";

	function openWindow(url) {
		window.open(url, 'okno', 'toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,resizable=1,width=480,height=520');
		return false;
	}
	
	function popup(nazwa,x,y) {
		opcje="toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,width="+x+",height="+y;
		if (okno.closed == false)
		{okno.close(); okno=window.open('','okno',opcje);} else
		{okno=window.open('','okno',opcje);}
		okno.focus();

		okno.document.write ('<html>');
		okno.document.write ('<head>');
		okno.document.write ('<title>Obrazek</title>');
		okno.document.write ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
		okno.document.write ('</head>');
		okno.document.write ('');
		okno.document.write ('<body bottommargin="0" topmargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0" bgcolor="#ffffff" style="margin: 0px; padding: 0px;">');
		okno.document.write ('<table cellpadding="0" cellspacing="0" align="center" height="100%">');
		okno.document.write ('<tr><td>');
		okno.document.write ('<a href="javascript: window.close();"><img src="' + nazwa + '" alt="" border="0" name="zdj" id="zdj" onload="window.resizeTo(this.width+40,this.height+60);"></a>');
		okno.document.write ('</td></tr></table>');
		okno.document.write ('</body></html>');
	}
	
	function popup2(nazwa,x,y, podpis) {
		opcje="toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,width="+x+",height="+y;
		if (okno.closed == false)
		{okno.close(); okno=window.open('','okno',opcje);} else
		{okno=window.open('','okno',opcje);}
		okno.focus();

		okno.document.write ('<html>');
		okno.document.write ('<head>');
		okno.document.write ('<title>Obrazek</title>');
		okno.document.write ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
		okno.document.write ('</head>');
		okno.document.write ('');
		okno.document.write ('<body bottommargin="0" topmargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0" bgcolor="#ffffff" style="margin: 0px; padding: 0px;">');
		okno.document.write ('<table cellpadding="0" cellspacing="2" align="center" height="100%">');
		okno.document.write ('<tr><td>');
		okno.document.write ('<a href="javascript: window.close();"><img src="' + nazwa + '" alt="" border="0" name="zdj" id="zdj" onload="window.resizeTo(this.width+40,this.height+60);"></a>');
		okno.document.write ('</td></tr><tr><td align="center">');
		okno.document.write (podpis);
		okno.document.write ('</td></tr></table>');
		okno.document.write ('</body></html>');
	}


