function Menu(id) { this.Id = id; this.Object = null; this.Write = function () { var html = ''; html += '
'; // alert(html); document.write(html); this.Object = document.getElementById(this.Id); } this.Exists = function () { return this.Object != null; } }