function alertObj(obj) { var text = ""; for (var key in obj) { text += key+":"+obj[key]+"\n"; } alert(text); }