   //     This script Copyright 2002, Hyperbole Software, UnLtd.


   if  (typeof(utils) == 'undefined')
      utils = new Object();

      utils.Is_Defined
       = function(value)
           {
            var result = false;

            if  (typeof(value) != 'undefined')
               result = true;
            
            return(result);
           }


      utils.Point
       = function(x, y)
           {
            var point = new Object;

            point.x = parseInt(x);
            point.y = parseInt(y);

            return(point);
           }


      utils.Size
       = function(width, height)
           {
            var size = new Object;

            size.width  = parseInt(width);
            size.height = parseInt(height);

            return(size);
           }

      Number.prototype.Format
       = function(width, fill_chr)
           {
            var result;


            if  (fill_chr == '')
               fill_chr = ' ';

            if  (fill_chr.length > 1)
               fill_chr = fill_chr.substr(0,1);

            result = this.toString();
            while (result.length < width)
               result = fill_chr + result;

            return(result);
           }




   window.Is_Defined = utils.Is_Defined;
   window.Point      = utils.Point;
   window.Size       = utils.Size;

   var milli_seconds = milli_second =    1;
   var seconds       = second       = 1000*milli_second;
   var minutes       = minute       =   60*seconds;
   var hours         = hour         =   60*minutes;
   var days          = day          =   24*hours;


   //     This script Copyright 2002, Hyperbole Software, UnLtd.





//     <<<<<     End of File     >>>>>





