{
  if (argument0 == 1)
  {
    return mplay_init_ipx()
  }
  if (argument0 == 2)
  {
    if (argument1)
      __str = ''
    else
      __str = get_string('Give the address (or an empty string for local network).','');
    return mplay_init_tcpip(__str);
  }
  if (argument0 == 3)
  {
    if (argument1)
      __str = ''
    else
      __str = get_string('Give the phone number.','');
    return mplay_init_modem('',__str);
  }
  if (argument0 == 4)
  {
    return mplay_init_serial(1,57600,0,0,4)   // This is a typical setting
  }
}