There are hashes in javascript: http://www.planetpdf.com/mainpage.asp?webpageid=970 You can use the Array object in this fashion: myArray['Betty'] = 'Boop'; myArray['Fred'] = 'Flintstone'; myArray['Sandra'] = 'Dee'; Iteration by: for (var i in myArray) app.alert(i); // do something here OR: http://developer.irt.org/script/518.htm -------------------------------------------------------------------------------