function show_comment_form()
{
        jQuery('#cform').show();
        jQuery('#comm_form a').hide();
        jQuery('#cmform').ajaxForm({
                url:'engine/newcomment.php',
                type:'POST',
                success: function(response){
                        jQuery('#comm_form').after(response);
                        jQuery('#comm_form a').show();
                        jQuery('#cform').hide();
                        jQuery('textarea').val('');
                }
        });
	
        return false;
}