var prod=new Produkty();

function Produkty()
{
	var wszystkiePromocje=true;
	this.wjazd=function(obj,r)
	{
		var id=obj.id.substr(7);
		document.getElementById('prodnaz'+id).className='promocja_over';
		if(r==1) document.getElementById('cenaprzed'+id).className='cena_prom_over';
	}
	
	this.wyjazd=function(obj,r)
	{
		var id=obj.id.substr(7);
		document.getElementById('prodnaz'+id).className='tytul_prom';
		if(r==1) document.getElementById('cenaprzed'+id).className='cena_przed_prom';
	}
	
	this.pokazWszystkiePromocje=function()
	{
		i=15;
		if(this.wszystkiePromocje) 
		{
			this.wszystkiePromocje=false;
			document.getElementById('wiecejPromocji').innerHTML='pokaż wszystkie promocje';
			while(document.getElementById('produkt'+i)) 
			{
				document.getElementById('produkt'+i).style.display='none';
				i++;
			}
		}
		else
		{
			this.wszystkiePromocje=true;
			document.getElementById('wiecejPromocji').innerHTML='schowaj promocje';
			while(document.getElementById('produkt'+i)) 
			{
				document.getElementById('produkt'+i).style.display='';
				i++;
			}
		}
	}
}

function pokaz_duze(theURL,winName,w,h)
{
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+''
pop = window.open(theURL,winName,settings);
pop.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />');
pop.document.write('<title>k2 wadowice<\/title><body bgcolor="white" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">');
pop.document.write('<div align=center><a href="javascript:window.close();"><img src="/zdj.php?big='+theURL+'" alt="kliknij, aby zamknac okno" title="kliknij, aby zamknac okno" border="0"><\/a><\/div>');
pop.document.write('<\/body>');
}
