// Some extra functions

function confirmDelete(articleID)
{
	return confirm('Delete event number ' + articleID + ' ?');
}

function popupHelp(url)
{
	window.open(url,'help','scrollbars,toolbar,resizable=yes,width=600px,height=400px');
	return false;
}

