function checkscript() {

    if (!document.commentForm.user.value) {
	alert('Bitte gib deinen Namen an!');
	document.commentForm.user.focus();
	return false;
    }

    if (!document.commentForm.comment.value) {
	alert('Na? Kommentar vergessen?');
	document.commentForm.comment.focus();
	return false;
    }

    return true;
}

