function displayPopup(msg){
	$('#popup-message').dialog({
		autoOpen:false,
		buttons:{'Ok':function(){$(this).dialog("close");}},
		closeOnEscape:true,
		draggable:false,
		modal:true,
		resizable:false,
		title:'Information',
		width:480
	});
	$('#popup-message').html(msg);
	$('#popup-message').dialog('open');
}

function confirmDelete(){
	input_box=confirm("Are you sure you want to delete?\nClick OK to confirm or CANCEL to cancel.");
	if (input_box==true){
		document.admin_delete.submit();
	}
}

function loadCommentsItems(id, page){
	$.get("ajax_load_comments.php", {id:id, page:page}, function(data){
		$("#comments").html(data);
	});		
}

function rolloverButton (id, state) {
	  if (document.getElementById) {
	    var element_id = document.getElementById(id);
		if (state == 'over') {
		  element_id.className = 'gobuttonover'
		}else{
		  element_id.className = 'gobutton'
		}
	  }
	}

function getEventByDate(selectedDate){
	var id = $.ajax({
		type:'GET',
		url:'ajax_get_event_by_date.php?date='+selectedDate,
		async:false
	}).responseText;
	
	document.location.href = 'event.php?id='+id;
}

