/*-------------------------------------------------------+
| Ajax Comments mSF For PHP-Fusion 7.xx v.1.0
| Copyright © 2008-2009 Powered by .:MeF:.
| URL: http://x-iweb.ru/
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
function addcomment()
    {
            new Ajax.Updater( 'comments', '/includes/comments/addcomment.php?delete_comment=0',
	    {
		    method: 'post',
		    parameters: $('cform').serialize(),
		    onSuccess: function() {
			$('comment_text').value = '';
		    }
	    }                   );
		
		var loader = document.getElementById('loading');
		loader.innerHTML = '<img src="/includes/comments/images/comment_loading.gif" alt="loading" />';
	
    }
	
function deletecomment(commet_id)
    {
            new Ajax.Updater( 'comments', '/includes/comments/addcomment.php?delete_comment=1',
	    {
		    method: 'post',
		    parameters: $('delform_'+commet_id).serialize()
	    }                   );
		
		var loader = document.getElementById('loading');
		loader.innerHTML = '<img src="/includes/comments/images/comment_loading.gif" alt="loading" />';
		
    }