private function wget_is_installed () 
{
  $rc = passthru ('wget >/dev/null 2>/dev/null');

  if ($rc) return 1;
  else return 0;
}
