
function init() {
	var mytextarea = document.getElementById('nachricht');
	var defaultMsg = mytextarea.value;


    mytextarea.onblur = function() {
        if (this.value == '') this.value = defaultMsg;
    }

    mytextarea.onfocus = function() {
        if (this.value == defaultMsg) this.value = '';
    }
}

window.onload = init;
