function confirmDelete()
{
	if (!confirm("Are you sure you want to delete this?"))
		return false;
		
	return true;
}