var notice_s = '<a href="#" onclick="$(\'#login-form\').fadeIn(\'slow\'); $(\'div.alertPanel\').hide(); ">Войти</a> | ';
notice_s += '<a href="registr.htm">Зарегистрироваться</a>';
function alertPanel(id, text, time) {
    $("div.alertPanel").remove();
    $("#" + id).append('<div class="alertPanel">' + text + '</div>');
    $("div.alertPanel").fadeIn('slow');
    if(time)
        setTimeout( '$("div.alertPanel").fadeOut("slow"); ', time);
}
// --------------------------------------------- work
function alertObject(obj) {
    var ss = "";
    for(key in obj) {
        if(obj[key] == undefined) continue;
        ss += "KEY = " + key + ", value = " + obj[key] + ", ";
    }

    alert(ss);
}
function alertArray(a) {
    var n = a.length;
    var s = "";
    for(i=0; i<n; i++)
        s += i + " => " + a[i] + "\n";
    alert(s);
}

