Description: There are times when we are working with JavaScript and just can\'t remember the exact object name. Here\'s a little snippet to stick in your code that will allow you to iterate through the object model and stop when you\'ve found what you need. var oCtrl; try { for (oCtrl in document) { if (confirm(oCtrl) == false) { break;}} } catch(everything) { alert(\'error found\'); } Submission Date: 12/14/2001 9:44:16 AM Submitted By: Robbe Morris Email:...