diff -r dd2edcdc6c03 -r e5484a9e0818 includes/clientside/static/dynano.js --- a/includes/clientside/static/dynano.js Wed Jun 27 12:09:02 2007 -0400 +++ b/includes/clientside/static/dynano.js Thu Jun 28 11:13:39 2007 -0400 @@ -8,6 +8,11 @@ function DNobj(id) { this.object = ( typeof(id) == 'object' ) ? id : document.getElementById(id); + if ( !this.object ) + { + this.object = false; + return this; + } this.height = __DNObjGetHeight(this.object); this.width = __DNObjGetWidth(this.object);