When initial the map, I created many popup for features
var popup= new OpenLayers.Popup.FramedCloud(
id, //id
new OpenLayers.LonLat(msg.reviseLng, msg.reviseLat),
new OpenLayers.Size(160,100),
'<html></html>',
null,
true);
popup.autoSize=false;
map.addPopup(popup);
but I can not get a exist popup when I location a point ,I want get it by it's id and show it, please help me