var e="";
function toggle_visibility(id) {
      e = "#"+id;
	  //alert(e)
	  $(e).dialog('open'); 
    }
$(function() {
	$("#showstates").accordion({ autoHeight: false, active: true, clearStyle: true, collapsible:true });
	$(".popup").dialog({ bgiframe: true, autoOpen: false, height: 200, width: 500, modal: true, resizable: false, position: 'center'  });
});

