/**
  *  Deletes a host from the meeting
  * @param String $login
  * @return boolean          Returns true if everything is ok
  */
 public function deleteParticipant($login)
 {
     $session = $this->xmlApi->getBreezeSession();
     if ($session != NULL && $this->xmlApi->login($this->adminLogin, $this->adminPass, $session)) {
         return $this->xmlApi->deleteMeetingParticipant($this->sco_id, $login, $session);
     }
 }