// navbar.js
var navURLs = new Array('index.php','custom.php','transport.php','got.php', 'ved.html', 'info.html', 'calc_query.html', 'arhiv.php', 'mailto:custodi@custodi.ru?subject=From Custodi Site');
var linkText = new Array('Главная','Таможня','Перевозки','Консалтинг', 'Документы ВЭД', 'Справка', 'Калькуляция', 'Новости ГТК', 'Почта');
function navbar() {
        var navStr= '';
        for (var i = 0; i < navURLs.length; i++) {
                //        if (location.href != navURLs[i]) {                               Uncomment this line and comment
                if (location.href.indexOf(navURLs[i]) == -1) {        // this one when not browsing locally
                        navStr += '<font color=#009966> <B> | </B></font><A HREF="' + navURLs[i] + '">' + linkText[i] + '</A> ';
                        }
                }
        navStr += '<font color=#009966><B> | </B></font>';
        document.writeln('<BR>' + navStr);
        }
