Mike Alsup Mon, 30 Apr 2007 07:21:37 -0700
Ooops. This is obviously wrong:
if (a[i].name = 'editor') {
It should be: if (a[i].name == 'editor') { Mike