var CmsComment = {
    send : function() {
        if ( $( '#comment_input' ).val().length > 1000) {
            alert( 'Yorumunuz çok uzun.' );
            return false;
        }
        if ( ! $( '#comment_input' ).val() ) {
            alert( 'Boş yorum gönderemezsiniz.' );
            return false;
        }
	
	 $.ajax({
	    type: "POST",
	    url: '/comments/add-comment',
	    data: $( "#send-comment" ).serialize(),
	    success: function() {
     		alert( "Yorumunuz eklenmiştir." );
     		sComments( 1, $( "#comment_item_id" ).val(), 10 );
	    }
	  });
    },
    
    clearComment : function() {
        $( '#comment_input' ).val( '' );
    }
}
function openPopUp_520x390(href, target)
{
	var winl = (screen.width - 520) / 2;
	var wint = (screen.height - 390) / 2;
	window.open(href, target, 'width=520, height=390, top=' + wint + ', left=' + winl + ', toolbar=0, location=0, directories=0, status=1, menuBar=0, scrollBars=1, resizable=0');
	return false;
}

