function confirmDelete(text)
{
	var agree = confirm('Вы уверены что хотите удалить ' + ((text) ? text : 'это') + '?');
	return( agree ? true : false );
}

function ShowNotification($title, $msg, $clr)
{
	alert($title);
}

jQuery(document).ready(function() 
{	
	$(".btn_sendmessage_ajax").live('click', function()
	{
		alert('аякс-не-аякс');
//		return false;
	});
	
	$(".btn_ajax_btn span").click(function()
	{
		var id = '#' + $(this).parent().attr('formtoshow');
		var tohide = $(this).parent().attr('formtohide')
		if ($(id).is(':visible'))	
		{				
			$(id).slideUp(300, function() { if (tohide) $("#" + tohide).slideDown(300) });
		}
		else
		{
			$(id).slideDown(300, function() { if (tohide) $("#" + tohide).slideUp(300) });
		}
	});	
});

