PHP Code:
	
	
function meinObjekt ()
{
  this.bla = 'laber';
  this.doSomething = function ()
  { 
    this.blubb = 'blubber';
    this.doSomethingElse = function()
    {
      alert (this.bla);
    }
    this.doSomethingElse();
  }
} 
Peter
          



. Wenn ich dich nicht hätte.
							
						
Comment