function send_note()
{
	if ($('doublecheck').value == 'dc')
	{
		var handlerFunc = function(t) 
		{
			window.location=window.location.href;
		}
	
	
		var form_serial = Form.serialize('comment_form');
		var url = 'index.php';
		var myAjax = new Ajax.Request(url, {method: 'post',  parameters: form_serial, onSuccess:handlerFunc});
	}
}


function delete_comment(comment_id)
{
 	var handlerFunc = function(t) 
 	{
	}

	var pars = 'comment_id=' + comment_id + '&delete=true';
	var url = 'index.php';
	var myAjax = new Ajax.Request(url, {method: 'post',  parameters: pars, onSuccess:handlerFunc});

}