function enableButton() {
    $( 'send_button' ).enable();
    $( 'comment' ).value = '';
}

var Content = {
	    submitComment : function( id ) {
	        if ( ! $( 'comment' ).value ) {
	            Sdn.flashMessage( 'Boş yorum gönderemezsiniz.' );
	            return false;
	        }
	        new Sdn.ajaxRequest( '/icerik/sendcommentajax/article_id/' + id, {
	            parameters : $( 'send_comment' ).serialize(),
	            onSuccess : function( transport ) {
	                result = transport.responseText.evalJSON();
	                if ( result.status )
	                    Sdn.flashMessage( 'Yorumunuz başarı ile eklendi. Onay sürecinden sonra yayınlanacaktır.' );
	                else
	                	Modalbox.show('<div><p style="text-align:justify;padding:20px 1px;">Yorumunuzu kaydedebilmek için lütfen <b>Facebook</b> veya <b>SDN Forum</b> hesabınız ile giriş yapınız. Giriş yaptıktan sonra yorumunuzu kaydedebilirsiniz.SDN forum hesabınız yok ise <a target="_blank" href="http://forum.shiftdelete.net/register.php" class="MB_focusable">yeni hesap</a> açabilirsiniz</p></div>',{title: 'Shiftdelete.net'});
	            }
	        });
	 
	    }
	}