
var default_text = "Tvoja pripomienka resp. komentár?";

text_onfocus = function() {
    var txtbx = document.getElementById('txtbx');
    if (txtbx.value == default_text)
        txtbx.value = '';
}

text_onblur = function() {
    var txtbx = document.getElementById('txtbx');
    if (txtbx.value == '')
        txtbx.value = default_text;
}

text_onsubmit = function() {
    var txtbx = document.getElementById('txtbx');
    if (txtbx.value == default_text)
        return false;
    return true;
}

var Namespace = new function() {

    function Community() {
        this.init_widget();
        this.title = "Komunita";
    }

    Community.prototype = new Widget;
    Community.name = "Community";

    Community.prototype.init = function(div_name) {
        this.div_name = div_name;
    }

    Community.prototype.start = function() {
    }

    Community.prototype.build = function() {
        this.core_build();

        var notice_div = document.createElement("div");
        notice_div.style.position = "absolute";
        notice_div.style.width = "230px";
        notice_div.style.height = "230px";
        notice_div.style.left = "10px";
        notice_div.style.top = "15px";
        notice_div.style.color = "#000";
        notice_div.style.fontFamily = 'Arial';
        notice_div.style.fontSize = '10px';
        var text = 'Pripoj sa k nám na Facebooku. Dozvieš sa čo sa chystá, odpovieme na tvoje otázky a podelíme sa s tebou o tie najzaujímavejšie pripomienky ;-)';
        text += '';
        text += '<br /><br />';
        text += '<a style="font-weight:bold; font-size:12px; margin-left: 5em;" href="http://www.facebook.com/pages/Presny-cas/309655130441">Presný čas na Facebooku</a>';
        notice_div.innerHTML = text;
        this.canvas_div.appendChild(notice_div);
    }

    return {
        Community: Community
    }
}

register_widget(Namespace.Community);

