void CConnections::Remove(LPCTSTR sKey)
{
	CConnection* pConnection =NULL;
	
	if (Lookup(sKey,pConnection)) {

		pConnection->Delete();

		if (!RemoveKey(sKey)) {
				ASSERT(FALSE);
			}
	
	}


}