static void Main(string[] args)
 {
     if (args.Length < 3)
     {
         Console.WriteLine(
         "Usage: Recipe13_3 [Path to spider.conf] [Path to download to] [URL to download]");
     }
     else
     {
         WorldSpider download = new WorldSpider();
         download.Download(args[0], new Uri(args[2]), args[1]);
     }
 }