    function checkEntries() {
        var ups = "";
        tag = document.Form.text.value;
        tagger = document.Form.name.value;
        if (tag.length < 1)
            ups+= " Eintrag fehlt! ";
        if (tagger.length < 1)
            ups+= " Name fehlt! ";
        if (ups) {
            alert(ups);
            return false;
        } else {
            return true;
        }
    }


<!--
function emoticon(t){ // SMILIES EINFUEGEN
var f = Form;
f.text.value += t;
f.text.focus();
}
//-->

