function test()
{
   var obj = {
      anArray  : [1, 2, 3, 4, 5],
      anInt    : 42,
      aString  : "some string",
      childObj1: {
         twelve     : 12,
         thirteen   : 13,
         fourteen   : 14,
         grandChild1: {
            x: 2, y: 3, z: 4
         },
         anotherArray: [
            1, 2,
            [
               {foo: "bar"}, {bar: "foo"}
            ],
            'x'
         ]
      },
      childObj2: {
         x: {
            x: {
               xValue: "xValue"
            }
         }
      },
      yetAnotherArray: [
         [ 1, 2, 3 ],
         [ 4, 5, 6 ],
         [ 7, 8, 9 ]
      ]
   };

   Util.show(obj);

   var s = "" + new Date();

   s =
      "<hr>\n" +
      "Current Date/Time: [" + s + "]\n" +
      "<hr>\n";

   Util.write(s);

   Util.write(obj);

   Util.write(s);
}
