" + event.feature.attributes["STATE_NAME"] + " (" + event.feature.attributes["STATE_ABBR"] + ")
";
for(var attribute:String in event.feature.attributes) {
if((attribute != "STATE_NAME") && (attribute != "STATE_ABBR") && (attribute != "coordinates"))
content = content + "" + attribute + " : " + event.feature.attributes[attribute] + "
";
}
popup.htmlText = content;
map.addPopup(popup, true);
}
]]>