$(function()
{
	if($('#dynamic_active_users').length > 0)
	{
		active_user_interval = setInterval(function()
		{
			$.get('?active_users=1', function(result)
			{
				if(result.length > 0) { $('#dynamic_active_users').html(result);}
			});
		}, 10000);
	}
	
	$('.compaign_dialog_error').dialog(
	{
		autoOpen		: false,
		bgiframe		: false,
		width			: 600,
//		height			: 600,
		modal			: true,
		closeOnEscape	: true,
		draggable		: false,
		resizable		: false,
		buttons:		{	
			'Ok' 	: function(){ $(this).dialog('close'); }, 
		}
	});
});