function CreateComment(){

    if(document.getElementById('CreateCommentForm').CommentText.value == ''){
        
        alert('Skriv ett meddelande');
        
        return;
    
    }
    
    document.getElementById('CreateCommentForm').style.display = 'none';
    
    document.getElementById('CreateCommentProgress').style.display = 'block';
    
    document.getElementById('CreateCommentForm').submit();

}



function DeleteComment(PageId,CommentId){

    if(confirm('Detta raderar kommentaren')){
    
        Hidden.location = '/?_PageId=' + PageId + '&_ActionName=DeleteComment&CommentId=' + CommentId;
    
    }


}
