// Copyright (c) 2008, General_Depet - http://www.katalog.intelekt.net.pl

function podmiana(co,j,ile) {

for(var i=1; i<=ile; i++) {
var ktora = +i;

if(ktora == co) {
var pod = +j+"_"+ktora;
var istnieje = document.getElementById(pod);
if (istnieje != null) document.getElementById(pod).style.display = "";
}
else if(ktora != co) {
var pod = +j+"_"+ktora;
var istnieje = document.getElementById(pod);
if (istnieje != null) document.getElementById(pod).style.display = "none";
}
}
}

function podmiana_pod_tyl(co,j,ile,u4,wyj) {

var t = +j;
t-=1;

for (var a=t; a>=u4; a--) {
for(var i=1; i<=ile; i++) {
var ktora = +i;

if(ktora == co) {
var pod = "p"+a+"_"+ktora;
var istnieje = document.getElementById(pod);
if (istnieje != null && ktora != wyj) document.getElementById(pod).style.display = "none";
}
else if(ktora != co) {
var pod = "p"+a+"_"+ktora;
var istnieje = document.getElementById(pod);
if (istnieje != null && ktora != wyj) document.getElementById(pod).style.display = "";
}
}
}

}

function podmiana_pod_przod(co,j,ile,u4,wyj) {

var p = +j;
p+=1;

for (var a=p; a<=u4; a++) {
for(var i=1; i<=ile; i++) {
var ktora = +i;

if(ktora == co) {
var pod = "p"+a+"_"+ktora;
var istnieje = document.getElementById(pod);
if (istnieje != null && ktora != wyj) document.getElementById(pod).style.display = "none";
}
else if(ktora != co) {
var pod = "p"+a+"_"+ktora;
var istnieje = document.getElementById(pod);
if (istnieje != null && ktora != wyj) document.getElementById(pod).style.display = "";
}
}
}

}

function wstaw()
{
	var katalogi = '<br/><strong>Polecamy katalogi:</strong><br/><br/><a href="http://www.biznes.promujsie.waw.pl/">Biznes i ekonomia</a><br/><a href="http://www.internet.promujsie.waw.pl/">Internet i komputery</a><br/><a href="http://www.turystyka.promujsie.waw.pl/">Turystyka</a><br/><a href="http://www.domiogrod.promujsie.waw.pl/">Dom i ogród</a><br/><a href="http://www.motoryzacja.promujsie.waw.pl/">Motoryzacja</a><br/><a href="http://www.zdrowie.promujsie.waw.pl/">Zdrowie i uroda</a><br/><a href="http://www.humor.promujsie.waw.pl/">Hobby i rozrywka</a><br/><a href="http://www.regiony.promujsie.waw.pl/">Regiony</a><br/><a href="http://www.mini.promujsie.waw.pl/">Katalog mini</a><br/><br/>Polecamy precle: <br/><br/><a href="http://www.promujsie.waw.pl/">Promuj się</a><br/><a href="http://www.promujsie.rozrabiaki.pl/">Reklama w internecie</a><br/><a href="http://www.promujsie.rubryka.pl/">Reklamuj się</a>';
	document.getElementById("polecamy").innerHTML = katalogi;
}

