function confirmDelete( url, type )
{
	result = confirm('You are about to delete this ' + type + '. Click OK to continue.');
	if ( result )
		location.href = url;
}