// JavaScript Document
function hide_preload() {
	var style= document.getElementById("preload_div").style;
	style.visibility="hidden";
}

function plausi_gb() {
	if(document.gb.name.value=="") {
		alert("Gebe bitte Deinen Namen an!");
		return false;
	} else if(document.gb.inhalt.value=="") {
		alert("Gebe bitte Deine Nachricht an!");
		return false;
	}
	return true;
}

function moreSmiliesAappendSmiley(text) {
	document.frmKommentar.txtKommentar.focus()
	document.frmKommentar.txtKommentar.value = document.frmKommentar.txtKommentar.value + " " + text + " ";
}