


function okno(nazwa,szer,wys)
{	 
	if(eval(szer)==0)
		szer = 100;
	if(eval(wys)==0)
		szer = 200;
	window.open(nazwa,'','toolbar=no,scrollbars=yes,resizable=yes,status=no,location=no,directories=no,width='+eval(szer)+',height='+eval(wys)+',menubar=no,top=200,left=200')
}

function fullscreen(plik,nazwa)
{	 
	window.open(plik,nazwa,'fullscreen=yes')
}


function window2()
{		
		var oHtml = document.getElementById("reklama") ;
		var win2;

		if(!win2)
		{
			html = oHtml.innerHTML;
			oHtml.innerHTML = null;
		 

			win2 = new Ext.Window({
				width:400,
				height:200,				 
				width       : 540,
				height      : 440,  
				plain: true,	
				layout:'fit',


 				title:"Reklama",
				autoScroll:true,
				modal:true,
				html: html,

				animEl: 'koszyk'
		 
			});

		}


		win2.show(this);
 
}

 
