<!--

var katalog_start = '/';

function get(id) {
        if (document.getElementById(id)) {
            return document.getElementById(id);
        }
    return false;
}

function baner(numer) {
    var i=1;
    get('b').src='img/b'+numer+'.jpg';
    while(get('b' + i)) {
        get('b'+i).className = '';
        i++;
    }
    get('b'+numer).className = 'ban';
    ustawienia.location.href = katalog_start+'ustawienia.php?o=b&id='+numer;
}

function tlo(numer, kolor) {
    var i=1;
    document.body.style.backgroundColor='#'+kolor;
    while(get('t' + i)) {
        get('t'+i).className = '';
        i++;
    }
    get('t'+numer).className = 'ban';
    ustawienia.location.href = katalog_start+'ustawienia.php?o=t&id='+kolor;
}

function r(strona) {
    document.location.href = strona;
}
function u(link) {
    ustawienia.location.href = katalog_start+'ustawienia.php?o=h&l='+link;
}

function skasuj_1(element) {
    if (element.value == 'poszukiwany towar lub kod') {
        element.value = '';
    }
}

function wstaw_1(element) {
    if (element.value == '') {
        element.value = 'poszukiwany towar lub kod';
    }
}

//-->
