function make_visible(elementID){
	if(document.getElementById(elementID).style.display == 'inline')
		document.getElementById(elementID).style.display = 'none';
	else	
		document.getElementById(elementID).style.display = 'inline';
}

function Validate(){
	if(document.kommentar.username.value == ''){
		alert('Bitte trage Deinen Namen ein.')
		return false;
	}	
	if(document.kommentar.comment.value == ''){
		alert('Bitte gib auch einen Kommentar ab.')
		return false;
	}	
}