/*	-----------------------------------------------------------------------------------------------------------
	Administration Javascripts
	
	Various javascript functions used by the administration software
----------------------------------------------------------------------------------------------------------- */


function removeWarning(url)
//	-----------------------------------------------------------------------------------------------------------
//	Remove warning
//	-----------------------------------------------------------------------------------------------------------
{
	if (confirm('Are you sure you want to remove the selected items?  This action is not reversible!'))
	{
		window.location = url;
	}
	
	return false;
}
