-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph_visualization.html
More file actions
222 lines (166 loc) · 50.8 KB
/
Copy pathgraph_visualization.html
File metadata and controls
222 lines (166 loc) · 50.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<html>
<head>
<meta charset="utf-8">
<script src="lib/bindings/utils.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
<center>
<h1></h1>
</center>
<style type="text/css">
#mynetwork {
width: 100%;
height: 750px;
background-color: #222222;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 750px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div class="card" style="width: 100%">
<div id="mynetwork" class="card-body"></div>
</div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
var filter = {
item : '',
property : '',
value : []
};
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"font": {"color": "white"}, "group": "Person", "id": "Phil Isenberg", "label": "Phil Isenberg", "shape": "dot", "size": 10, "title": "Phil Isenberg"}, {"font": {"color": "white"}, "group": "Topic", "id": "Offshore Entities", "label": "Offshore Entities", "shape": "dot", "size": 10, "title": "Offshore Entities"}, {"font": {"color": "white"}, "group": "Topic", "id": "Energy Contracts", "label": "Energy Contracts", "shape": "dot", "size": 10, "title": "Energy Contracts"}, {"font": {"color": "white"}, "group": "Person", "id": "Talya Gordon", "label": "Talya Gordon", "shape": "dot", "size": 10, "title": "Talya Gordon"}, {"font": {"color": "white"}, "group": "Person", "id": "Sara Shackleton", "label": "Sara Shackleton", "shape": "dot", "size": 10, "title": "Sara Shackleton"}, {"font": {"color": "white"}, "group": "Person", "id": "Tana Jones", "label": "Tana Jones", "shape": "dot", "size": 10, "title": "Tana Jones"}, {"font": {"color": "white"}, "group": "Person", "id": "regan.grice@wachovia.com", "label": "regan.grice@wachovia.com", "shape": "dot", "size": 10, "title": "regan.grice@wachovia.com"}, {"font": {"color": "white"}, "group": "Person", "id": "ssarrett@itginc.com", "label": "ssarrett@itginc.com", "shape": "dot", "size": 10, "title": "ssarrett@itginc.com"}, {"font": {"color": "white"}, "group": "Topic", "id": "Budget Discussions", "label": "Budget Discussions", "shape": "dot", "size": 10, "title": "Budget Discussions"}, {"font": {"color": "white"}, "group": "Topic", "id": "Raptor", "label": "Raptor", "shape": "dot", "size": 10, "title": "Raptor"}, {"font": {"color": "white"}, "group": "Person", "id": "Stacey Richardson", "label": "Stacey Richardson", "shape": "dot", "size": 10, "title": "Stacey Richardson"}, {"font": {"color": "white"}, "group": "Person", "id": "Mark Taylor", "label": "Mark Taylor", "shape": "dot", "size": 10, "title": "Mark Taylor"}, {"font": {"color": "white"}, "group": "Person", "id": "Corbet", "label": "Corbet", "shape": "dot", "size": 10, "title": "Corbet"}, {"font": {"color": "white"}, "group": "Person", "id": "Jim Derrick@ENRON", "label": "Jim Derrick@ENRON", "shape": "dot", "size": 10, "title": "Jim Derrick@ENRON"}, {"font": {"color": "white"}, "group": "Person", "id": "Michelle Overton", "label": "Michelle Overton", "shape": "dot", "size": 10, "title": "Michelle Overton"}, {"font": {"color": "white"}, "group": "Person", "id": "Chris Germany", "label": "Chris Germany", "shape": "dot", "size": 10, "title": "Chris Germany"}, {"font": {"color": "white"}, "group": "Person", "id": "Fletcher", "label": "Fletcher", "shape": "dot", "size": 10, "title": "Fletcher"}, {"font": {"color": "white"}, "group": "Person", "id": "Craig \u003c/o=enron/ou=na/cn=recipients/cn=jtaylo2\u003e", "label": "Craig \u003c/o=enron/ou=na/cn=recipients/cn=jtaylo2\u003e", "shape": "dot", "size": 10, "title": "Craig \u003c/o=enron/ou=na/cn=recipients/cn=jtaylo2\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Dan \u003c/o=enron/ou=na/cn=recipients/cn=dlyons\u003e", "label": "Dan \u003c/o=enron/ou=na/cn=recipients/cn=dlyons\u003e", "shape": "dot", "size": 10, "title": "Dan \u003c/o=enron/ou=na/cn=recipients/cn=dlyons\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Steven Kean", "label": "Steven Kean", "shape": "dot", "size": 10, "title": "Steven Kean"}, {"font": {"color": "white"}, "group": "Person", "id": "Louise Kitchen", "label": "Louise Kitchen", "shape": "dot", "size": 10, "title": "Louise Kitchen"}, {"font": {"color": "white"}, "group": "Person", "id": "Jeffrey Skilling", "label": "Jeffrey Skilling", "shape": "dot", "size": 10, "title": "Jeffrey Skilling"}, {"font": {"color": "white"}, "group": "Person", "id": "Kenneth Lay", "label": "Kenneth Lay", "shape": "dot", "size": 10, "title": "Kenneth Lay"}, {"font": {"color": "white"}, "group": "Person", "id": "Mark Koenig", "label": "Mark Koenig", "shape": "dot", "size": 10, "title": "Mark Koenig"}, {"font": {"color": "white"}, "group": "Person", "id": "James Derrick Jr.", "label": "James Derrick Jr.", "shape": "dot", "size": 10, "title": "James Derrick Jr."}, {"font": {"color": "white"}, "group": "Person", "id": "Oxley", "label": "Oxley", "shape": "dot", "size": 10, "title": "Oxley"}, {"font": {"color": "white"}, "group": "Person", "id": "Eric \u003c/o=enron/ou=na/cn=recipients/cn=eu/cn=recipients/cn=eshaw\u003e", "label": "Eric \u003c/o=enron/ou=na/cn=recipients/cn=eu/cn=recipients/cn=eshaw\u003e", "shape": "dot", "size": 10, "title": "Eric \u003c/o=enron/ou=na/cn=recipients/cn=eu/cn=recipients/cn=eshaw\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Vince Kaminski", "label": "Vince Kaminski", "shape": "dot", "size": 10, "title": "Vince Kaminski"}, {"font": {"color": "white"}, "group": "Person", "id": "Robison", "label": "Robison", "shape": "dot", "size": 10, "title": "Robison"}, {"font": {"color": "white"}, "group": "Person", "id": "Wallace", "label": "Wallace", "shape": "dot", "size": 10, "title": "Wallace"}, {"font": {"color": "white"}, "group": "Person", "id": "fatimapr@softcom.ca", "label": "fatimapr@softcom.ca", "shape": "dot", "size": 10, "title": "fatimapr@softcom.ca"}, {"font": {"color": "white"}, "group": "Person", "id": "Fmoussighi", "label": "Fmoussighi", "shape": "dot", "size": 10, "title": "Fmoussighi"}, {"font": {"color": "white"}, "group": "Person", "id": "Darren \u003c/o=enron/ou=na/cn=recipients/cn=dvanek\u003e", "label": "Darren \u003c/o=enron/ou=na/cn=recipients/cn=dvanek\u003e", "shape": "dot", "size": 10, "title": "Darren \u003c/o=enron/ou=na/cn=recipients/cn=dvanek\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Sonia Perez", "label": "Sonia Perez", "shape": "dot", "size": 10, "title": "Sonia Perez"}, {"font": {"color": "white"}, "group": "Person", "id": "Foust", "label": "Foust", "shape": "dot", "size": 10, "title": "Foust"}, {"font": {"color": "white"}, "group": "Person", "id": "Shirleen Glasin", "label": "Shirleen Glasin", "shape": "dot", "size": 10, "title": "Shirleen Glasin"}, {"font": {"color": "white"}, "group": "Person", "id": "Boatman", "label": "Boatman", "shape": "dot", "size": 10, "title": "Boatman"}, {"font": {"color": "white"}, "group": "Person", "id": "Luke Eleftheriou", "label": "Luke Eleftheriou", "shape": "dot", "size": 10, "title": "Luke Eleftheriou"}, {"font": {"color": "white"}, "group": "Person", "id": "Pack Jr.", "label": "Pack Jr.", "shape": "dot", "size": 10, "title": "Pack Jr."}, {"font": {"color": "white"}, "group": "Person", "id": "Harry M Collins", "label": "Harry M Collins", "shape": "dot", "size": 10, "title": "Harry M Collins"}, {"font": {"color": "white"}, "group": "Person", "id": "William s bradford", "label": "William s bradford", "shape": "dot", "size": 10, "title": "William s bradford"}, {"font": {"color": "white"}, "group": "Person", "id": "Guinn", "label": "Guinn", "shape": "dot", "size": 10, "title": "Guinn"}, {"font": {"color": "white"}, "group": "Person", "id": "Suresh Raghavan", "label": "Suresh Raghavan", "shape": "dot", "size": 10, "title": "Suresh Raghavan"}, {"font": {"color": "white"}, "group": "Person", "id": "Alberto Levy", "label": "Alberto Levy", "shape": "dot", "size": 10, "title": "Alberto Levy"}, {"font": {"color": "white"}, "group": "Person", "id": "Courtney Votaw", "label": "Courtney Votaw", "shape": "dot", "size": 10, "title": "Courtney Votaw"}, {"font": {"color": "white"}, "group": "Person", "id": "Scott L Flood", "label": "Scott L Flood", "shape": "dot", "size": 10, "title": "Scott L Flood"}, {"font": {"color": "white"}, "group": "Person", "id": "contest", "label": "contest", "shape": "dot", "size": 10, "title": "contest"}, {"font": {"color": "white"}, "group": "Person", "id": "Cash", "label": "Cash", "shape": "dot", "size": 10, "title": "Cash"}, {"font": {"color": "white"}, "group": "Person", "id": "LawrenceLRTNMT@aol.com@ENRON", "label": "LawrenceLRTNMT@aol.com@ENRON", "shape": "dot", "size": 10, "title": "LawrenceLRTNMT@aol.com@ENRON"}, {"font": {"color": "white"}, "group": "Person", "id": "Bill Dombrowski", "label": "Bill Dombrowski", "shape": "dot", "size": 10, "title": "Bill Dombrowski"}, {"font": {"color": "white"}, "group": "Person", "id": "Torres", "label": "Torres", "shape": "dot", "size": 10, "title": "Torres"}, {"font": {"color": "white"}, "group": "Person", "id": "Nick \u003c/o=enron/ou=na/cn=recipients/cn=ntubach\u003e", "label": "Nick \u003c/o=enron/ou=na/cn=recipients/cn=ntubach\u003e", "shape": "dot", "size": 10, "title": "Nick \u003c/o=enron/ou=na/cn=recipients/cn=ntubach\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Jason", "label": "Jason", "shape": "dot", "size": 10, "title": "Jason"}, {"font": {"color": "white"}, "group": "Person", "id": "Breslau", "label": "Breslau", "shape": "dot", "size": 10, "title": "Breslau"}, {"font": {"color": "white"}, "group": "Person", "id": "Wendy", "label": "Wendy", "shape": "dot", "size": 10, "title": "Wendy"}, {"font": {"color": "white"}, "group": "Person", "id": "Mulvany", "label": "Mulvany", "shape": "dot", "size": 10, "title": "Mulvany"}, {"font": {"color": "white"}, "group": "Person", "id": "/O=ENRON/OU=NA/cn=Recipients/cn=tngo", "label": "/O=ENRON/OU=NA/cn=Recipients/cn=tngo", "shape": "dot", "size": 10, "title": "/O=ENRON/OU=NA/cn=Recipients/cn=tngo"}, {"font": {"color": "white"}, "group": "Person", "id": "Charles \u003c/o=enron/ou=na/cn=recipients/cn=cward3\u003e", "label": "Charles \u003c/o=enron/ou=na/cn=recipients/cn=cward3\u003e", "shape": "dot", "size": 10, "title": "Charles \u003c/o=enron/ou=na/cn=recipients/cn=cward3\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Paul E. Parrish", "label": "Paul E. Parrish", "shape": "dot", "size": 10, "title": "Paul E. Parrish"}, {"font": {"color": "white"}, "group": "Person", "id": "Harlan", "label": "Harlan", "shape": "dot", "size": 10, "title": "Harlan"}, {"font": {"color": "white"}, "group": "Person", "id": "Linda Ng", "label": "Linda Ng", "shape": "dot", "size": 10, "title": "Linda Ng"}, {"font": {"color": "white"}, "group": "Person", "id": "eveningmba@haas.berkeley.edu", "label": "eveningmba@haas.berkeley.edu", "shape": "dot", "size": 10, "title": "eveningmba@haas.berkeley.edu"}, {"font": {"color": "white"}, "group": "Person", "id": "Brendan", "label": "Brendan", "shape": "dot", "size": 10, "title": "Brendan"}, {"font": {"color": "white"}, "group": "Person", "id": "Oboukhov", "label": "Oboukhov", "shape": "dot", "size": 10, "title": "Oboukhov"}, {"font": {"color": "white"}, "group": "Person", "id": "James A Ajello", "label": "James A Ajello", "shape": "dot", "size": 10, "title": "James A Ajello"}, {"font": {"color": "white"}, "group": "Person", "id": "Ivonne", "label": "Ivonne", "shape": "dot", "size": 10, "title": "Ivonne"}, {"font": {"color": "white"}, "group": "Person", "id": "Bill Marcus (E-mail)", "label": "Bill Marcus (E-mail)", "shape": "dot", "size": 10, "title": "Bill Marcus (E-mail)"}, {"font": {"color": "white"}, "group": "Person", "id": "ABCNEWS.com Breaking News", "label": "ABCNEWS.com Breaking News", "shape": "dot", "size": 10, "title": "ABCNEWS.com Breaking News"}, {"font": {"color": "white"}, "group": "Person", "id": "Bonnie White", "label": "Bonnie White", "shape": "dot", "size": 10, "title": "Bonnie White"}, {"font": {"color": "white"}, "group": "Person", "id": "Tobor", "label": "Tobor", "shape": "dot", "size": 10, "title": "Tobor"}, {"font": {"color": "white"}, "group": "Person", "id": "Angela \u0026 Dan Masluk", "label": "Angela \u0026 Dan Masluk", "shape": "dot", "size": 10, "title": "Angela \u0026 Dan Masluk"}, {"font": {"color": "white"}, "group": "Person", "id": "Christopher f \u003c/o=enron/ou=na/cn=recipients/cn=ccalger\u003e", "label": "Christopher f \u003c/o=enron/ou=na/cn=recipients/cn=ccalger\u003e", "shape": "dot", "size": 10, "title": "Christopher f \u003c/o=enron/ou=na/cn=recipients/cn=ccalger\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Lydia", "label": "Lydia", "shape": "dot", "size": 10, "title": "Lydia"}, {"font": {"color": "white"}, "group": "Person", "id": "Alexander Confidential Memo-Counsel (Exchange) Sheers", "label": "Alexander Confidential Memo-Counsel (Exchange) Sheers", "shape": "dot", "size": 10, "title": "Alexander Confidential Memo-Counsel (Exchange) Sheers"}, {"font": {"color": "white"}, "group": "Person", "id": "Maxine e \u003c/o=enron/ou=na/cn=recipients/cn=mleving\u003e", "label": "Maxine e \u003c/o=enron/ou=na/cn=recipients/cn=mleving\u003e", "shape": "dot", "size": 10, "title": "Maxine e \u003c/o=enron/ou=na/cn=recipients/cn=mleving\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Athena", "label": "Athena", "shape": "dot", "size": 10, "title": "Athena"}, {"font": {"color": "white"}, "group": "Person", "id": "Matt", "label": "Matt", "shape": "dot", "size": 10, "title": "Matt"}, {"font": {"color": "white"}, "group": "Person", "id": "Chad Landry", "label": "Chad Landry", "shape": "dot", "size": 10, "title": "Chad Landry"}, {"font": {"color": "white"}, "group": "Person", "id": "Emmons", "label": "Emmons", "shape": "dot", "size": 10, "title": "Emmons"}, {"font": {"color": "white"}, "group": "Person", "id": "Kent Palmerton", "label": "Kent Palmerton", "shape": "dot", "size": 10, "title": "Kent Palmerton"}, {"font": {"color": "white"}, "group": "Person", "id": "Ben Parsons", "label": "Ben Parsons", "shape": "dot", "size": 10, "title": "Ben Parsons"}, {"font": {"color": "white"}, "group": "Person", "id": "Janette \u003c/o=enron/ou=na/cn=recipients/cn=jelbert\u003e", "label": "Janette \u003c/o=enron/ou=na/cn=recipients/cn=jelbert\u003e", "shape": "dot", "size": 10, "title": "Janette \u003c/o=enron/ou=na/cn=recipients/cn=jelbert\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Kristin", "label": "Kristin", "shape": "dot", "size": 10, "title": "Kristin"}, {"font": {"color": "white"}, "group": "Person", "id": "Binh", "label": "Binh", "shape": "dot", "size": 10, "title": "Binh"}, {"font": {"color": "white"}, "group": "Person", "id": "Pat Kambhu", "label": "Pat Kambhu", "shape": "dot", "size": 10, "title": "Pat Kambhu"}, {"font": {"color": "white"}, "group": "Person", "id": "Stacey \u003c/o=enron/ou=na/cn=recipients/cn=srichar2\u003e", "label": "Stacey \u003c/o=enron/ou=na/cn=recipients/cn=srichar2\u003e", "shape": "dot", "size": 10, "title": "Stacey \u003c/o=enron/ou=na/cn=recipients/cn=srichar2\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Doug gilbert-smith", "label": "Doug gilbert-smith", "shape": "dot", "size": 10, "title": "Doug gilbert-smith"}, {"font": {"color": "white"}, "group": "Person", "id": "Keesler", "label": "Keesler", "shape": "dot", "size": 10, "title": "Keesler"}, {"font": {"color": "white"}, "group": "Person", "id": "Middleton", "label": "Middleton", "shape": "dot", "size": 10, "title": "Middleton"}, {"font": {"color": "white"}, "group": "Person", "id": "Colin Tonks", "label": "Colin Tonks", "shape": "dot", "size": 10, "title": "Colin Tonks"}, {"font": {"color": "white"}, "group": "Person", "id": "Lech", "label": "Lech", "shape": "dot", "size": 10, "title": "Lech"}, {"font": {"color": "white"}, "group": "Person", "id": "Mayer", "label": "Mayer", "shape": "dot", "size": 10, "title": "Mayer"}, {"font": {"color": "white"}, "group": "Person", "id": "Shirley \u003c/o=enron/ou=na/cn=recipients/cn=stijeri\u003e", "label": "Shirley \u003c/o=enron/ou=na/cn=recipients/cn=stijeri\u003e", "shape": "dot", "size": 10, "title": "Shirley \u003c/o=enron/ou=na/cn=recipients/cn=stijeri\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Tom May", "label": "Tom May", "shape": "dot", "size": 10, "title": "Tom May"}, {"font": {"color": "white"}, "group": "Person", "id": "Westbrook", "label": "Westbrook", "shape": "dot", "size": 10, "title": "Westbrook"}, {"font": {"color": "white"}, "group": "Person", "id": "Kimberley Jacobson", "label": "Kimberley Jacobson", "shape": "dot", "size": 10, "title": "Kimberley Jacobson"}, {"font": {"color": "white"}, "group": "Person", "id": "vaughn.white2@williams.com", "label": "vaughn.white2@williams.com", "shape": "dot", "size": 10, "title": "vaughn.white2@williams.com"}, {"font": {"color": "white"}, "group": "Person", "id": "Mallory", "label": "Mallory", "shape": "dot", "size": 10, "title": "Mallory"}, {"font": {"color": "white"}, "group": "Person", "id": "jleslie@luce.com", "label": "jleslie@luce.com", "shape": "dot", "size": 10, "title": "jleslie@luce.com"}, {"font": {"color": "white"}, "group": "Person", "id": "oshirock@pacbell.net", "label": "oshirock@pacbell.net", "shape": "dot", "size": 10, "title": "oshirock@pacbell.net"}, {"font": {"color": "white"}, "group": "Person", "id": "Susan Covino", "label": "Susan Covino", "shape": "dot", "size": 10, "title": "Susan Covino"}, {"font": {"color": "white"}, "group": "Person", "id": "Thome", "label": "Thome", "shape": "dot", "size": 10, "title": "Thome"}, {"font": {"color": "white"}, "group": "Person", "id": "Dayne", "label": "Dayne", "shape": "dot", "size": 10, "title": "Dayne"}, {"font": {"color": "white"}, "group": "Person", "id": "Carrico", "label": "Carrico", "shape": "dot", "size": 10, "title": "Carrico"}, {"font": {"color": "white"}, "group": "Person", "id": "Charles \u003c/o=enron/ou=na/cn=recipients/cn=ccheek\u003e", "label": "Charles \u003c/o=enron/ou=na/cn=recipients/cn=ccheek\u003e", "shape": "dot", "size": 10, "title": "Charles \u003c/o=enron/ou=na/cn=recipients/cn=ccheek\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Ed McMichael", "label": "Ed McMichael", "shape": "dot", "size": 10, "title": "Ed McMichael"}, {"font": {"color": "white"}, "group": "Person", "id": "hfinken@ect.enron.com", "label": "hfinken@ect.enron.com", "shape": "dot", "size": 10, "title": "hfinken@ect.enron.com"}, {"font": {"color": "white"}, "group": "Person", "id": "nmann@erac.com", "label": "nmann@erac.com", "shape": "dot", "size": 10, "title": "nmann@erac.com"}, {"font": {"color": "white"}, "group": "Person", "id": "Sean Keenan", "label": "Sean Keenan", "shape": "dot", "size": 10, "title": "Sean Keenan"}, {"font": {"color": "white"}, "group": "Person", "id": "Terry Peng", "label": "Terry Peng", "shape": "dot", "size": 10, "title": "Terry Peng"}, {"font": {"color": "white"}, "group": "Person", "id": "Mike Kahl (E-mail)", "label": "Mike Kahl (E-mail)", "shape": "dot", "size": 10, "title": "Mike Kahl (E-mail)"}, {"font": {"color": "white"}, "group": "Person", "id": "Salvo-Shook", "label": "Salvo-Shook", "shape": "dot", "size": 10, "title": "Salvo-Shook"}, {"font": {"color": "white"}, "group": "Person", "id": "Ravi Tennekoon", "label": "Ravi Tennekoon", "shape": "dot", "size": 10, "title": "Ravi Tennekoon"}, {"font": {"color": "white"}, "group": "Person", "id": "Leslie \u003c/o=enron/ou=na/cn=recipients/cn=llawner\u003e", "label": "Leslie \u003c/o=enron/ou=na/cn=recipients/cn=llawner\u003e", "shape": "dot", "size": 10, "title": "Leslie \u003c/o=enron/ou=na/cn=recipients/cn=llawner\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Danielle \u003c/o=enron/ou=na/cn=recipients/cn=dromain\u003e", "label": "Danielle \u003c/o=enron/ou=na/cn=recipients/cn=dromain\u003e", "shape": "dot", "size": 10, "title": "Danielle \u003c/o=enron/ou=na/cn=recipients/cn=dromain\u003e"}, {"font": {"color": "white"}, "group": "Person", "id": "Germain Palmer", "label": "Germain Palmer", "shape": "dot", "size": 10, "title": "Germain Palmer"}, {"font": {"color": "white"}, "group": "Person", "id": "Susan Mara", "label": "Susan Mara", "shape": "dot", "size": 10, "title": "Susan Mara"}]);
edges = new vis.DataSet([{"arrows": "to", "from": "Phil Isenberg", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Phil Isenberg", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Talya Gordon", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Talya Gordon", "title": "EMAILED", "to": "Sara Shackleton", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "EMAILED", "to": "Talya Gordon", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "EMAILED", "to": "Tana Jones", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "EMAILED", "to": "regan.grice@wachovia.com", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "EMAILED", "to": "ssarrett@itginc.com", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "TALKS_ABOUT", "to": "Raptor", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "EMAILED", "to": "Stacey Richardson", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Sara Shackleton", "title": "EMAILED", "to": "Mark Taylor", "width": 1}, {"arrows": "to", "from": "Corbet", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Corbet", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Jim Derrick@ENRON", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Michelle Overton", "title": "EMAILED", "to": "Chris Germany", "width": 1}, {"arrows": "to", "from": "Chris Germany", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Chris Germany", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Chris Germany", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Chris Germany", "title": "EMAILED", "to": "Fletcher", "width": 1}, {"arrows": "to", "from": "Chris Germany", "title": "EMAILED", "to": "Stacey Richardson", "width": 1}, {"arrows": "to", "from": "Craig \u003c/o=enron/ou=na/cn=recipients/cn=jtaylo2\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Dan \u003c/o=enron/ou=na/cn=recipients/cn=dlyons\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "EMAILED", "to": "Louise Kitchen", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "EMAILED", "to": "Jeffrey Skilling", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "EMAILED", "to": "Kenneth Lay", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "EMAILED", "to": "Mark Koenig", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "EMAILED", "to": "James Derrick Jr.", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "TALKS_ABOUT", "to": "Raptor", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "EMAILED", "to": "Oxley", "width": 1}, {"arrows": "to", "from": "Steven Kean", "title": "EMAILED", "to": "Eric \u003c/o=enron/ou=na/cn=recipients/cn=eu/cn=recipients/cn=eshaw\u003e", "width": 1}, {"arrows": "to", "from": "Louise Kitchen", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Louise Kitchen", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Louise Kitchen", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Louise Kitchen", "title": "EMAILED", "to": "Steven Kean", "width": 1}, {"arrows": "to", "from": "Louise Kitchen", "title": "EMAILED", "to": "Sara Shackleton", "width": 1}, {"arrows": "to", "from": "Jeffrey Skilling", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Kenneth Lay", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Kenneth Lay", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Kenneth Lay", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Kenneth Lay", "title": "EMAILED", "to": "Mark Taylor", "width": 1}, {"arrows": "to", "from": "Kenneth Lay", "title": "EMAILED", "to": "Steven Kean", "width": 1}, {"arrows": "to", "from": "Kenneth Lay", "title": "EMAILED", "to": "Mark Koenig", "width": 1}, {"arrows": "to", "from": "Kenneth Lay", "title": "EMAILED", "to": "James Derrick Jr.", "width": 1}, {"arrows": "to", "from": "Kenneth Lay", "title": "EMAILED", "to": "Vince Kaminski", "width": 1}, {"arrows": "to", "from": "Mark Koenig", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Mark Koenig", "title": "TALKS_ABOUT", "to": "Raptor", "width": 1}, {"arrows": "to", "from": "Mark Koenig", "title": "EMAILED", "to": "James Derrick Jr.", "width": 1}, {"arrows": "to", "from": "Mark Koenig", "title": "EMAILED", "to": "Steven Kean", "width": 1}, {"arrows": "to", "from": "Mark Koenig", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Mark Koenig", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "James Derrick Jr.", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "James Derrick Jr.", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "James Derrick Jr.", "title": "TALKS_ABOUT", "to": "Raptor", "width": 1}, {"arrows": "to", "from": "James Derrick Jr.", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Oxley", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Oxley", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Eric \u003c/o=enron/ou=na/cn=recipients/cn=eu/cn=recipients/cn=eshaw\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Robison", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Robison", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Fletcher", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Fletcher", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Wallace", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Wallace", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "fatimapr@softcom.ca", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Fmoussighi", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Darren \u003c/o=enron/ou=na/cn=recipients/cn=dvanek\u003e", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Darren \u003c/o=enron/ou=na/cn=recipients/cn=dvanek\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Sonia Perez", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Sonia Perez", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Foust", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Shirleen Glasin", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Boatman", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Luke Eleftheriou", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Pack Jr.", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Harry M Collins", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "William s bradford", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "William s bradford", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Guinn", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Guinn", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Suresh Raghavan", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Alberto Levy", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Courtney Votaw", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Courtney Votaw", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Scott L Flood", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Scott L Flood", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "contest", "title": "EMAILED", "to": "Vince Kaminski", "width": 1}, {"arrows": "to", "from": "Vince Kaminski", "title": "EMAILED", "to": "Steven Kean", "width": 1}, {"arrows": "to", "from": "Vince Kaminski", "title": "EMAILED", "to": "Tana Jones", "width": 1}, {"arrows": "to", "from": "Vince Kaminski", "title": "EMAILED", "to": "Cash", "width": 1}, {"arrows": "to", "from": "Vince Kaminski", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Vince Kaminski", "title": "EMAILED", "to": "LawrenceLRTNMT@aol.com@ENRON", "width": 1}, {"arrows": "to", "from": "Vince Kaminski", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Vince Kaminski", "title": "TALKS_ABOUT", "to": "Raptor", "width": 1}, {"arrows": "to", "from": "Vince Kaminski", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Bill Dombrowski", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Bill Dombrowski", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Torres", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Harry M Collins", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Nick \u003c/o=enron/ou=na/cn=recipients/cn=ntubach\u003e", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Sara Shackleton", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Jason", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Breslau", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Wendy", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Mulvany", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Stacey Richardson", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Tana Jones", "title": "EMAILED", "to": "Mark Taylor", "width": 1}, {"arrows": "to", "from": "Stacey Richardson", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Stacey Richardson", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Stacey Richardson", "title": "EMAILED", "to": "Tana Jones", "width": 1}, {"arrows": "to", "from": "Stacey Richardson", "title": "EMAILED", "to": "/O=ENRON/OU=NA/cn=Recipients/cn=tngo", "width": 1}, {"arrows": "to", "from": "Stacey Richardson", "title": "EMAILED", "to": "Sara Shackleton", "width": 1}, {"arrows": "to", "from": "Stacey Richardson", "title": "EMAILED", "to": "Chris Germany", "width": 1}, {"arrows": "to", "from": "Mark Taylor", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Mark Taylor", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Mark Taylor", "title": "EMAILED", "to": "William s bradford", "width": 1}, {"arrows": "to", "from": "Mark Taylor", "title": "EMAILED", "to": "Tana Jones", "width": 1}, {"arrows": "to", "from": "Mark Taylor", "title": "EMAILED", "to": "Louise Kitchen", "width": 1}, {"arrows": "to", "from": "Mark Taylor", "title": "EMAILED", "to": "Sara Shackleton", "width": 1}, {"arrows": "to", "from": "Mark Taylor", "title": "EMAILED", "to": "Charles \u003c/o=enron/ou=na/cn=recipients/cn=cward3\u003e", "width": 1}, {"arrows": "to", "from": "Mark Taylor", "title": "EMAILED", "to": "Kenneth Lay", "width": 1}, {"arrows": "to", "from": "Paul E. Parrish", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Paul E. Parrish", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Paul E. Parrish", "title": "EMAILED", "to": "Kenneth Lay", "width": 1}, {"arrows": "to", "from": "Harlan", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Linda Ng", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "eveningmba@haas.berkeley.edu", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Brendan", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Oboukhov", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "James A Ajello", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Jason", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Jason", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Breslau", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Breslau", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Wendy", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Wendy", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Mulvany", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Mulvany", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Ivonne", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Bill Marcus (E-mail)", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Bill Marcus (E-mail)", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "ABCNEWS.com Breaking News", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Bonnie White", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Bonnie White", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Tobor", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Angela \u0026 Dan Masluk", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Christopher f \u003c/o=enron/ou=na/cn=recipients/cn=ccalger\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Christopher f \u003c/o=enron/ou=na/cn=recipients/cn=ccalger\u003e", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Lydia", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Alexander Confidential Memo-Counsel (Exchange) Sheers", "title": "EMAILED", "to": "Sara Shackleton", "width": 1}, {"arrows": "to", "from": "Maxine e \u003c/o=enron/ou=na/cn=recipients/cn=mleving\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Athena", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Athena", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Matt", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Chad Landry", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Emmons", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Emmons", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Kent Palmerton", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Ben Parsons", "title": "EMAILED", "to": "Vince Kaminski", "width": 1}, {"arrows": "to", "from": "Janette \u003c/o=enron/ou=na/cn=recipients/cn=jelbert\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Janette \u003c/o=enron/ou=na/cn=recipients/cn=jelbert\u003e", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Kristin", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Kristin", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Binh", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Pat Kambhu", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Stacey \u003c/o=enron/ou=na/cn=recipients/cn=srichar2\u003e", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Stacey \u003c/o=enron/ou=na/cn=recipients/cn=srichar2\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Doug gilbert-smith", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Doug gilbert-smith", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Keesler", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Middleton", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Middleton", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Colin Tonks", "title": "EMAILED", "to": "Chris Germany", "width": 1}, {"arrows": "to", "from": "Lech", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Lech", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Mayer", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Mayer", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Shirley \u003c/o=enron/ou=na/cn=recipients/cn=stijeri\u003e", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Tom May", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Tom May", "title": "EMAILED", "to": "Sara Shackleton", "width": 1}, {"arrows": "to", "from": "Westbrook", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Kimberley Jacobson", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "vaughn.white2@williams.com", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "vaughn.white2@williams.com", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Cash", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Cash", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Cash", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Mallory", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "jleslie@luce.com", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "oshirock@pacbell.net", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "oshirock@pacbell.net", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Susan Covino", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Thome", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Dayne", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Carrico", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Carrico", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Charles \u003c/o=enron/ou=na/cn=recipients/cn=ccheek\u003e", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Ed McMichael", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "hfinken@ect.enron.com", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "nmann@erac.com", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Sean Keenan", "title": "EMAILED", "to": "Mark Taylor", "width": 1}, {"arrows": "to", "from": "LawrenceLRTNMT@aol.com@ENRON", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Terry Peng", "title": "EMAILED", "to": "Vince Kaminski", "width": 1}, {"arrows": "to", "from": "Mike Kahl (E-mail)", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Mike Kahl (E-mail)", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Salvo-Shook", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Ravi Tennekoon", "title": "TALKS_ABOUT", "to": "Energy Contracts", "width": 1}, {"arrows": "to", "from": "Ravi Tennekoon", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Leslie \u003c/o=enron/ou=na/cn=recipients/cn=llawner\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Danielle \u003c/o=enron/ou=na/cn=recipients/cn=dromain\u003e", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Germain Palmer", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}, {"arrows": "to", "from": "Susan Mara", "title": "EMAILED", "to": "Steven Kean", "width": 1}, {"arrows": "to", "from": "Susan Mara", "title": "EMAILED", "to": "Kristin", "width": 1}, {"arrows": "to", "from": "Susan Mara", "title": "TALKS_ABOUT", "to": "Budget Discussions", "width": 1}, {"arrows": "to", "from": "Susan Mara", "title": "EMAILED", "to": "Kenneth Lay", "width": 1}, {"arrows": "to", "from": "Susan Mara", "title": "TALKS_ABOUT", "to": "Offshore Entities", "width": 1}]);
nodeColors = {};
allNodes = nodes.get({ returnType: "Object" });
for (nodeId in allNodes) {
nodeColors[nodeId] = allNodes[nodeId].color;
}
allEdges = edges.get({ returnType: "Object" });
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {"nodes": {"borderWidth": 2, "borderWidthSelected": 4, "font": {"size": 14, "face": "Outfit"}, "shadow": true}, "edges": {"color": {"inherit": true}, "smooth": {"type": "continuous", "forceDirection": "none"}}, "physics": {"forceAtlas2Based": {"gravitationalConstant": -50, "centralGravity": 0.01, "springLength": 100, "springConstant": 0.08}, "maxVelocity": 50, "solver": "forceAtlas2Based", "timestep": 0.35, "stabilization": {"iterations": 150}}};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>