function pokaz_produkt(param)
{
	$link = "produkt.php?id_produktu="+param;
	setTimeout("window.location.href=$link",0);
}

function pokaz_zestaw(param)
{
	$link = "zestaw.php?id="+param;
	setTimeout("window.location.href=$link",0);
}

function change(_id)
{
	document.getElementById(_id).style.textDecoration="underline";
	
}

function change_back(_id)
{
	document.getElementById(_id).style.textDecoration="none";
}

function PopUp(lok,index)
{
  PopUpWindow=window.open("","Popup","status=no, width=1, height=1");
  PopUpWindow.document.writeln('<html>');
  PopUpWindow.document.writeln('<head>');
  PopUpWindow.document.writeln('<title></title>');
  PopUpWindow.document.writeln('</head>');
  PopUpWindow.document.writeln('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" onLoad="window.resizeTo(document.images[0].width+10, document.images[0].height+49); window.moveTo(((screen.width-document.images[0].width)/2), ((screen.height-document.images[0].height)/2))" onBlur="self.close()">');
  PopUpWindow.document.writeln('<img  src="show_obrazek.php?lok='+lok+'&numer='+index+'" onClick="self.close()">');  //load the image in the window
  PopUpWindow.document.writeln('</body>');
  PopUpWindow.document.writeln('</html>');
  PopUpWindow.document.close();
  PopUpWindow.focus(); 
}


