function disableArticle() {
	if($('#enable_choose').val() == 0){
		$('#admin_comment').css("display","block");
	} else {
		$('#admin_comment').css("display","none");
	}
}

function proof_comment() {
	if($('#enable_choose').val() == 0 && $('#enable_choose').val() == ''){
		alert("Bitte Kommentiere deine Entscheidung");
		return false;
	} 
	return true;
}

function disableArticle_2() {
	$('#disable').css("display","block");
}

function proof_comment_2() {
	if($('#disable_comment').val() == ''){
		alert("Bitte Kommentiere deine Entscheidung");
		return false;
	}
	return true;
}

