//_______________________________________________________________________
//   |       |
//   | knipp |           Knipp Medien und Kommunikation GmbH
//    -------
//
//
//    Project: Pöppelmann Relaunch 2010
//
//    Copyright (C) 2009 by Knipp Medien und Kommunikation GmbH
//
//    initial autor:   Björn Mönikes
//    version:         $Revision: 786 $
//                     $Date: 2011-10-07 11:15:41 +0200 (Fr, 07 Okt 2011) $
//                     $Author: Bjoern.Moenikes $
//
//

function Log()
{
  this.enabled = false;
}

$.extend(Log.prototype,
{
    enable : function() {
        this.enabled = true;
    },

    disable : function() {
        this.enabled = false;
    },
    log : function(s)
    {
      if (typeof console == "undefined")
        return;
      if (this.enable && typeof console.log == "function")
        console.log(s);
    }  
});

var C = new Log();


function UID()
{
    this.uid = 1;
};
$.extend(UID.prototype,
{

    get : function()
    {
      return (this.uid++);
    },

    last : function()
    {
      return this.uid;
    }
});

var UId = new UID();

