From: <Saved by Microsoft Internet Explorer 5>
Subject: Dow Jones Interactive
Date: Thu, 21 Feb 2002 10:39:44 -0800
MIME-Version: 1.0
Content-Type: text/html;
	charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ptg.djnr.com/ccroot/asp/publib/story_clean_cpy.asp?articles=NYTF0204000089`NYTIMES01-1013212884&search=robert%20and%20michaels%20and%20fullerton&articledisplay=*&bHighlight=Y&Sessionid=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAbvLAAAAAAAAMjAwMjAyMjExMzIzMDcAAAAM&referer=true
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- =0A=
Copyright Dow Jones & Company Inc. All Rights Reserved. =0A=
Release 12, build date: Thu Sep 21 16:56:13 EDT 2000=0A=
 --><!-- /ccroot/asp/publib/story_clean_cpy.asp --><!-- Mozilla/4.0 =
(compatible; MSIE 5.5; Windows NT 5.0) --><!-- 0 =
--><HTML><HEAD><TITLE>Dow Jones Interactive</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252"><!-- Client Side API -->
<SCRIPT language=3Djavascript>

function SetCookie (name, value) {
 var argv =3D SetCookie.arguments ;
 var argc =3D SetCookie.arguments.length ;
 var expires =3D (argc > 2) ? argv[2] : null ;
 var secure =3D (argc > 5) ? argv[5] : false;
 document.cookie =3D name + "=3D" + escape (value) +
 ((expires =3D=3D null) ? "" : ("; expires=3D" + expires.toGMTString())) =
+
 "; path=3D/" +
 "; domain=3Dptg.djnr.com" +
 ((secure =3D=3D true) ? "; secure" : "");
}

function removeFromList(szKey, szValue, szDelimiter) {
var szHiddenField, iNameStart, iNameEnd, szCurrentValue, iCurrentPos, =
blnValFound;
var szSeparator =3D "";
szHiddenField =3D document.forms[0].hState.value;
iNameStart =3D szHiddenField.indexOf(szKey + "=3D");
if (iNameStart !=3D -1){
iNameStart =3D (iNameStart + (szKey + "=3D").length);
iNameEnd =3D szHiddenField.indexOf(szSeparator, iNameStart);
if (iNameEnd =3D=3D -1)
iNameEnd =3D szHiddenField.length;
szCurrentValue =3D szHiddenField.substring(iNameStart, iNameEnd);
szCurrentValue =3D unescape(szCurrentValue);
}
else
szCurrentValue =3D "";
if (szCurrentValue !=3D "") {
szCurrentValue =3D unescape(szCurrentValue);
iNameStart =3D 0;
while (szCurrentValue.indexOf(szDelimiter, iNameStart) !=3D -1) {
iNameEnd =3D szCurrentValue.indexOf(szDelimiter, iNameStart);
if (szCurrentValue.substring(iNameStart, iNameEnd) =3D=3D szValue) {
if (iNameStart =3D=3D 0) {
szCurrentValue =3D szCurrentValue.substring(iNameEnd + 1, =
szCurrentValue.length);
}
else {
szCurrentValue =3D szCurrentValue.substring(0, iNameStart - 1) + =
szDelimiter +
szCurrentValue.substring(iNameEnd + 1, szCurrentValue.length);
}
blnValFound =3D true;
break;
}
iNameStart =3D iNameEnd + 1;
}
if (blnValFound) {
replaceValue(szKey, szCurrentValue);
}
else {
if (szCurrentValue.substring(iNameStart, szCurrentValue.length) =3D=3D =
szValue) {
if (iNameStart !=3D 0) {
szCurrentValue =3D szCurrentValue.substring(0, iNameStart - 1);
replaceValue(szKey, szCurrentValue);
}
else {
deleteKey(szKey);
}
}
}
}
return true;
}

function appendToList(szKey, szValue, szDelimiter) {
var szHiddenField, iNameStart, iNameEnd, szCurrentValue;
var szSeparator =3D "";
szHiddenField =3D document.forms[0].hState.value;
iNameStart =3D szHiddenField.indexOf(szKey + "=3D");
if (iNameStart !=3D -1){
iNameStart =3D (iNameStart + (szKey + "=3D").length);
iNameEnd =3D szHiddenField.indexOf(szSeparator, iNameStart);
if (iNameEnd =3D=3D -1)
iNameEnd =3D szHiddenField.length;
szCurrentValue =3D szHiddenField.substring(iNameStart, iNameEnd);
szCurrentValue =3D unescape(szCurrentValue);
}
else
szCurrentValue =3D "";
if (szCurrentValue !=3D "")
szCurrentValue =3D szCurrentValue + szDelimiter + szValue;
else
szCurrentValue =3D szValue;
replaceValue(szKey, szCurrentValue);
return true;
}

function replaceValue(szName, szValue) {
var szHiddenField, strExistingNameValuePair, iNameStart, iNameEnd, =
iFormCount, iCounter;
var szSeparator =3D "";
szName =3D szName + "=3D";
szValue =3D escape(szValue);
szHiddenField =3D document.forms[0].hState.value;
if ((szHiddenField.indexOf(szSeparator + szName.toLowerCase()) !=3D -1) =
|| (szHiddenField.indexOf(szName.toLowerCase()) =3D=3D 0)) {
if (szHiddenField.indexOf(szName.toLowerCase()) =3D=3D 0)
iNameStart =3D 0;=20
else
iNameStart =3D szHiddenField.indexOf(szSeparator + szName.toLowerCase()) =
+ szSeparator.length;
iNameEnd =3D szHiddenField.indexOf(szSeparator, iNameStart);
if (iNameEnd =3D=3D -1) {=20
szHiddenField =3D szHiddenField.substring(0, iNameStart) + =
szName.toLowerCase() + szValue
}
else {
if (iNameStart =3D=3D 0) {
szHiddenField =3D szName.toLowerCase() + szValue + =
szHiddenField.substring(iNameEnd, szHiddenField.length);
}
else {
szHiddenField =3D szHiddenField.substring(0, iNameStart) + =
szName.toLowerCase() + szValue + szHiddenField.substring(iNameEnd, =
szHiddenField.length);
}
}
}
else {
if (szHiddenField =3D=3D "")
szHiddenField +=3D szName.toLowerCase() + szValue;
else
szHiddenField +=3D szSeparator + szName.toLowerCase() + szValue;
}

iFormCount =3D document.forms.length;
for (iCounter =3D 0; iCounter < iFormCount; iCounter++) {
if (document.forms[iCounter].hState !=3D null) {
eval("document.forms[" + iCounter + "].hState.value=3D'" + szHiddenField =
+ "';");
}
}
}

function deleteKey(szName) {
var szHiddenField, iNameStart, iNameEnd;
var szSeparator =3D "";
szHiddenField =3D document.forms[0].hState.value;
if ((szHiddenField.indexOf(szSeparator + szName.toLowerCase() + "=3D") =
!=3D -1) || (szHiddenField.indexOf(szName.toLowerCase() + "=3D") =3D=3D =
0)) {
if (szHiddenField.indexOf(szName.toLowerCase()) =3D=3D 0)
iNameStart =3D 0;=20
else
iNameStart =3D szHiddenField.indexOf(szSeparator + szName.toLowerCase() =
+ "=3D") + szSeparator.length;
iNameEnd =3D szHiddenField.indexOf(szSeparator, iNameStart);
if (iNameEnd =3D=3D -1)=20
szHiddenField =3D szHiddenField.substring(0, iNameStart - =
szSeparator.length);
else {
if (iNameStart =3D=3D 0)
szHiddenField =3D szHiddenField.substring(iNameEnd + szSeparator.length, =
szHiddenField.length);
else
szHiddenField =3D szHiddenField.substring(0, iNameStart - =
szSeparator.length) + szHiddenField.substring(iNameEnd, =
szHiddenField.length);
}
}
iFormCount =3D document.forms.length;
for (iCounter =3D 0; iCounter < iFormCount; iCounter++) {
if (document.forms[iCounter].hState !=3D null) {
eval("document.forms[" + iCounter + "].hState.value=3D'" + szHiddenField =
+ "';");
}
}
}

function escapePlus(sourceText) {
var outText =3D "";
var thisChar =3D "";
var plusChar =3D "+";
var escapedPlus =3D "%2B";
for (var i =3D 0; i < sourceText.length; i++) {
thisChar =3D sourceText.charAt(i)
if (thisChar =3D=3D plusChar) {
outText +=3D escapedPlus;
} else {
outText +=3D escape(thisChar);
}
}
return outText;
}
function noAccess() {
alert("");
}
</SCRIPT>
<LINK media=3Dall =
href=3D"http://ptg.djnr.com/ccroot/includes/global/css.txt"=20
type=3Dtext/css rel=3DStyleSheet>
<META content=3D"MSHTML 5.50.4522.1800" name=3DGENERATOR></HEAD>
<BODY>
<P><FONT face=3Dhelvetica,arial size=3D2>Business/Finacial Desk; Section =

C<BR><B>ENRON'S MANY STRANDS: THE POLITICS</B><BR><B>Enron, Preaching=20
Deregulation, Worked the Statehouse Circuit</B><BR>By LESLIE=20
WAYNE<BR><BR>02/09/2002<BR>The New York Times<BR>Page 1, Column 2<BR>c. =
2002 New=20
York Times Company<BR><BR>
<P>
<P><FONT face=3Dhelvetica,arial size=3D2>WASHINGTON, Feb. 8 -- When it =
came to=20
lobbying, the Enron Corporation, and Kenneth L. Lay, its former =
chairman, were=20
about as persistent as anyone had ever seen in California -- or Texas,=20
Tennessee, Oregon and Pennsylvania.=20
<P><FONT face=3Dhelvetica,arial size=3D2>With lavish campaign =
contributions, a fleet=20
of lobbyists, personal pitches by top Enron executives and even a phone =
call=20
from George W. Bush, then governor of Texas, to Tom Ridge, then governor =
of=20
Pennsylvania, Enron was the biggest player in the state legislatures in =
the late=20
1990's, pushing its version of energy deregulation.<BR>
<P><FONT face=3Dhelvetica,arial size=3D2>Recent attention in the Enron =
scandal has=20
focused on the company's efforts to influence Congress and the White =
House. But=20
Enron had been conducting a similar campaign on the state level, with =
far less=20
visibility and with considerable success.=20
<P><FONT face=3Dhelvetica,arial size=3D2>The objective was to break up =
monopoly=20
control of energy markets by local utilities and change the rules so =
energy=20
would be deregulated. To a large extent that goal was reached -- from =
1997 to=20
2000, 24 states adopted some form of energy deregulation, allowing =
energy=20
companies like Enron to find new markets.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''Enron was the only company =
out there=20
lobbying and they were everywhere,'' said Paul Joskow, director of the=20
Massachusetts Institute of Technology Center for Energy and =
Environmental Policy=20
Research. ''They not only carried a lot of water for themselves. But =
they=20
carried water for the rest of the industry.''=20
<P><FONT face=3Dhelvetica,arial size=3D2>So determined was Enron that it =
frequently=20
dispatched top executives like Mr. Lay and Jeffrey K. Skilling, its =
former chief=20
executive, to meet with utilities commissioners, testify before =
statehouse=20
committees and call on local politicians.=20
<P><FONT face=3Dhelvetica,arial size=3D2>This lobbying was backed by =
hefty campaign=20
contributions, $1.9 million to more than 700 candidates in 28 states =
since 1997,=20
according to the National Institute on Money in State Politics, a =
nonprofit=20
group.=20
<P><FONT face=3Dhelvetica,arial size=3D2>In the 2000 election cycle =
alone, Enron=20
gave $1.1 million to local candidates: as little as $250 to $500 in =
hundreds of=20
districts, as much as $10,000 to influential state legislators in =
California and=20
other big states.=20
<P><FONT face=3Dhelvetica,arial size=3D2>Unlike utilities or consumer =
groups that=20
lobbied for deregulation in one state or a few, Enron took on the issue=20
nationally. Its unique strategy combined a promise of lower electrical =
costs by=20
ending utility monopolies with old-fashioned statehouse power politics.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''In 4 years, energy =
deregulation passed in=20
24 states,'' said Ed Bender, executive director of the National =
Institute on=20
Money in State Politics. ''That's amazing. I don't think you can call it =
a=20
coincidence. They were trying to make something happen.''=20
<P><FONT face=3Dhelvetica,arial size=3D2>In the mid to late 1990's, =
contributions=20
streamed to elected officials -- Gov. Gray Davis of California, for =
instance,=20
received $97,500 of Enron's $438,155 in contributions to California =
politicians.=20
Gov. Rick Perry of Texas, then lieutenant governor, received $212,000; =
Gov.=20
George E. Pataki of New York got $9,000.=20
<P><FONT face=3Dhelvetica,arial size=3D2>As seven Midwestern states =
considered a=20
deregulation plan, Enron gave money to state house candidates in four of =
those=20
states, including $21,350 to legislators in Michigan and $19,805 to =
legislators=20
in Iowa.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''They were smart -- they went =
after people=20
who they knew would make a difference,'' said Mary Kenkel, former =
manager for=20
federal affairs at the Edison Electrical Institute, a utility lobbying =
group.=20
<P><FONT face=3Dhelvetica,arial size=3D2>Enron officials said that the =
company was=20
proud of the role it played in energy deregulation, though in the =
aftermath of=20
its bankruptcy filing and the sudden end of the California energy =
crisis, it is=20
now doing very little business in the states it once lobbied. Some =
states where=20
Enron does business are questioning whether to suspend Enron contracts.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''It's no secret we were very =
active,''=20
said Mark Palmer, an Enron spokesman. ''We helped open markets that =
needed to be=20
opened. And there continue to be markets that need to be opened.''=20
<P><FONT face=3Dhelvetica,arial size=3D2>When Pennsylvania was =
considering a=20
deregulation bill in 1997, Mr. Lay prevailed on Governor Bush to call =
Governor=20
Ridge to vouch for Enron. ''I said it would be very helpful to Enron,'' =
Mr. Lay=20
said last year.=20
<P><FONT face=3Dhelvetica,arial size=3D2>Pennsylvania wound up enacting=20
deregulation, in a plan that included some elements Enron favored and =
some it=20
did not.=20
<P><FONT face=3Dhelvetica,arial size=3D2>In a number of state capitals, =
Enron took=20
on some powerful interests, including local electrical monopolies, which =
are=20
often the biggest campaign donors on the state level. Enron =
representatives=20
often came in cold, without any contacts in government or the lobbying=20
community. To compensate, they lined up experts to testify, hired local=20
lobbyists and joined with consumer groups and some local utilities to =
present a=20
united front for deregulation.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''They were basically strangers =
in these=20
state capitals,'' said John Hanger, president of Citizens for =
Pennsylvania's=20
Future, an environmental group. ''They spent money to buy friends =
quickly and=20
present their case quickly because they were up against utilities that =
had=20
decades of local political relationships.''=20
<P><FONT face=3Dhelvetica,arial size=3D2>Lobbying the Pennsylvania =
legislature was=20
also the stated reason that Karl Rove, Mr. Bush's political adviser, =
recommended=20
that Enron give Ralph Reed, a Republican strategist with ties to =
religious=20
conservatives, a consulting contract, which it did. Mr. Reed never had =
to lobby=20
in Pennsylvania -- his hiring came after a deregulation bill was passed. =

<P><FONT face=3Dhelvetica,arial size=3D2>In California, Enron spent more =
than=20
$345,000 on lobbying, hiring former legislators and former utilities =
commission=20
officials. As early as 1994, Mr. Skilling, the former Enron chief =
executive who=20
then headed an Enron energy subsidiary, testified to utility =
commissioners that=20
deregulation could save the state $8.9 billion.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''You can triple the number of =
police=20
officers in Los Angeles, San Francisco, Oakland and San Diego,'' he =
said. ''The=20
stakes are huge and every minute that we delay bringing competitive =
markets to=20
California allows the meter to keep ticking.''=20
<P><FONT face=3Dhelvetica,arial size=3D2>Texas' deregulation plan -- the =
culmination=20
of a legislative battle that began in 1995 -- went into effect last =
month. While=20
Enron did not get all it wanted, it scored a partial victory. Texans for =
Public=20
Justice, a watchdog group, estimates that Enron's statehouse lobbying =
cost=20
$535,000 to $945,000.=20
<P><FONT face=3Dhelvetica,arial size=3D2>Enron hired 83 lobbyists in =
Texas, bought=20
advertisements in local papers and gave to local charities, including =
Laura=20
Bush's book fair.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''Enron was unique because of =
the=20
sophistication of their play,'' said Tom Smith, Texas director of Public =

Citizen, a consumer group. ''It was all Enron, all the time. They helped =
craft=20
the legislation. They gave to high-profile charities. They gave to both =
sides of=20
the aisle. They'd hold fund-raisers for those they wanted to re-elect. =
And they=20
had the good ol' boy lobbyists go out after hours boozing and =
schmoozing.''=20
<P><FONT face=3Dhelvetica,arial size=3D2>In New York, where deregulation =
was enacted=20
in 1996 but revisited for years, Enron made contributions to the state=20
Republican party in addition to Mr. Pataki and hired a former state =
energy=20
official, Howard Fromer, to lobby for it.=20
<P><FONT face=3Dhelvetica,arial size=3D2>Just last year, Mr. Lay called =
Governor Jeb=20
Bush of Florida to pitch deregulation there. Florida ultimately did not =
pass=20
energy deregulation, but lawmakers debated it for two legislative =
sessions.=20
<P><FONT face=3Dhelvetica,arial size=3D2>Elsewhere, Enron's =
aggressiveness=20
backfired. Its style did not play well in Oregon, where Enron bought =
Portland=20
General Electric, a utility it is now trying to sell, and where partial=20
deregulation was enacted in 1999.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''They came in like a house of =
fire and we=20
cooled their jets,'' said Fred Heutte, energy coordinator for the Oregon =
Sierra=20
Club. ''Once they realized they wouldn't be allowed to do what they =
wanted, they=20
lost interest. They came in with a blatant attempt to roll the =
legislature and=20
impress everyone with how important they were compared to podunk Oregon. =
We=20
didn't like it.''=20
<P><FONT face=3Dhelvetica,arial size=3D2>The legacy of Enron's efforts =
is that=20
consumer electrical markets have been made more competitive -- even =
though the=20
company has backed off from conducting business in many of those =
markets.=20
<P><FONT face=3Dhelvetica,arial size=3D2>''For all of Enron's problems, =
they played=20
an important role in opening up markets that were among the most =
fossilized in=20
the country,'' said <B>Robert</B> <B>Michaels</B>, an economics =
professor at the=20
University of California at <B>Fullerton</B>. ''Whatever Enron did =
wrong, it=20
spent a lot of money to achieve this.''<BR><BR></B></FONT>
<P><FONT face=3D"courier new" size=3D2><PRE></PRE>
<P><FONT face=3Dhelvetica,arial size=3D2><BR>
<P>Photos: In relentlessly pressing for energy deregulation state by =
state,=20
Enron made its logo, top, familiar to state legislators across the =
country. The=20
company was a big contributor to the campaigns of Gov. Rick Perry of =
Texas,=20
left, and Gov. Gray Davis of California. (Associated Press); (Associated =

Press)(pg. C1) Chart: ''Enron's Statehouse Donations Enron and Kenneth =
L. Lay,=20
its former chairman, gave $1.9 million to hundreds of state politicians =
in the=20
1998 and 2000 election cycles, as many legislatures considered energy=20
deregulation bills. For the 2000 elections, 98 percent of the giving =
went to=20
candidates who won. STATE: Texas TOTAL DONATIONS FOR '00 AND '98 =
ELECTION=20
CAMPAIGNS: $548,526 2000 CANDIDATES: 81 1998 CANDIDATES: 70 STATE: =
California=20
TOTAL DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 438,155 2000 =
CANDIDATES: 83=20
1998 CANDIDATES: 67 STATE: Oregon TOTAL DONATIONS FOR '00 AND '98 =
ELECTION=20
CAMPAIGNS: 149,549 2000 CANDIDATES: 87 1998 CANDIDATES: 87 STATE: =
Florida TOTAL=20
DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 142,750 2000 CANDIDATES: =
102 1998=20
CANDIDATES: 85 STATE: Ohio TOTAL DONATIONS FOR '00 AND '98 ELECTION =
CAMPAIGNS:=20
53,675 2000 CANDIDATES: 79 1998 CANDIDATES: 39 STATE: Nevada TOTAL =
DONATIONS FOR=20
'00 AND '98 ELECTION CAMPAIGNS: 48,750 2000 CANDIDATES: 32 1998 =
CANDIDATES: 22=20
STATE: New Jersey ('99 and '97 elections) TOTAL DONATIONS FOR '00 AND =
'98=20
ELECTION CAMPAIGNS: 26,200 2000 CANDIDATES: 21 1998 CANDIDATES: 3 STATE: =

Michigan TOTAL DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 25,700 2000 =

CANDIDATES: 28 1998 CANDIDATES: 50 STATE: Indiana TOTAL DONATIONS FOR =
'00 AND=20
'98 ELECTION CAMPAIGNS: 15,820 2000 CANDIDATES: 22 1998 CANDIDATES: 5 =
STATE:=20
Iowa TOTAL DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 14,610 2000 =
CANDIDATES:=20
32 1998 CANDIDATES: 41 STATE: Missouri TOTAL DONATIONS FOR '00 AND '98 =
ELECTION=20
CAMPAIGNS: 13,828 2000 CANDIDATES: 23 1998 CANDIDATES: 5 STATE: Maryland =
TOTAL=20
DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 12,250 2000 CANDIDATES: 0 =
1998=20
CANDIDATES: 13 STATE: Pennsylvania TOTAL DONATIONS FOR '00 AND '98 =
ELECTION=20
CAMPAIGNS: 12,150 2000 CANDIDATES: 9 1998 CANDIDATES: 2 STATE: Illinois =
TOTAL=20
DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 10,500 2000 CANDIDATES: 8 =
1998=20
CANDIDATES: 8 STATE: Louisiana ('99 elections) TOTAL DONATIONS FOR '00 =
AND '98=20
ELECTION CAMPAIGNS: 8,625 2000 CANDIDATES: 26 1998 CANDIDATES: n.a. =
STATE: New=20
York TOTAL DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 7,850 2000 =
CANDIDATES:=20
4 1998 CANDIDATES: 2 STATE: Oklahoma TOTAL DONATIONS FOR '00 AND '98 =
ELECTION=20
CAMPAIGNS: 5,250 2000 CANDIDATES: 15 1998 CANDIDATES: 1 STATE: =
Connecticut TOTAL=20
DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 4,500 2000 CANDIDATES: 0 =
1998=20
CANDIDATES: 16 STATE: Kansas TOTAL DONATIONS FOR '00 AND '98 ELECTION =
CAMPAIGNS:=20
4,300 2000 CANDIDATES: 8 1998 CANDIDATES: 18 STATE: Colorado TOTAL =
DONATIONS FOR=20
'00 AND '98 ELECTION CAMPAIGNS: 3,000 2000 CANDIDATES: 1 1998 =
CANDIDATES: 1=20
STATE: New Mexico TOTAL DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: =
2,500 2000=20
CANDIDATES: 1 1998 CANDIDATES: 2 STATE: South Dakota TOTAL DONATIONS FOR =
'00 AND=20
'98 ELECTION CAMPAIGNS: 1,500 2000 CANDIDATES: 10 1998 CANDIDATES: n.a. =
STATE:=20
Nebraska TOTAL DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 1,042 2000=20
CANDIDATES: 3 1998 CANDIDATES: n.a. STATE: Kentucky ('99 elections) =
TOTAL=20
DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 1,000 2000 CANDIDATES: 1 =
1998=20
CANDIDATES: 0 STATE: West Virginia TOTAL DONATIONS FOR '00 AND '98 =
ELECTION=20
CAMPAIGNS: 1,000 2000 CANDIDATES: 1 1998 CANDIDATES: 0 STATE: North =
Carolina=20
TOTAL DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 1,000 2000 =
CANDIDATES: 0=20
1998 CANDIDATES: 2 STATE: Arizona TOTAL DONATIONS FOR '00 AND '98 =
ELECTION=20
CAMPAIGNS: 760 2000 CANDIDATES: 1 1998 CANDIDATES: 0 STATE: Maine TOTAL=20
DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 700 2000 CANDIDATES: 7 =
1998=20
CANDIDATES: 0 STATE: Washington TOTAL DONATIONS FOR '00 AND '98 ELECTION =

CAMPAIGNS: 600 2000 CANDIDATES: 1 1998 CANDIDATES: 2 STATE: Arkansas =
TOTAL=20
DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 500 2000 CANDIDATES: 1 =
1998=20
CANDIDATES: n.a. STATE: Georgia TOTAL DONATIONS FOR '00 AND '98 ELECTION =

CAMPAIGNS: 500 2000 CANDIDATES: 2 1998 CANDIDATES: 0 STATE: Wyoming =
TOTAL=20
DONATIONS FOR '00 AND '98 ELECTION CAMPAIGNS: 500 2000 CANDIDATES: 0 =
1998=20
CANDIDATES: 1 Chart tracks status of state electric deregulation =
including=20
completely deregulated, deregulation suspended or delayed, partially=20
deregulated, and still regulated. (Sources: National Institute on Money =
in State=20
Politics; Edison Electric Institute)(pg. C5)
<P></B></FONT><BR>
<P><BR>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D575 border=3D0>
  <TBODY>
  <TR>
    <TD><I><FONT face=3Dhelvetica,arial size=3D1>Copyright =A9 2000 Dow =
Jones &amp;=20
      Company, Inc. All Rights Reserved.</FONT></I> =
</TD></TR></TBODY></TABLE><!-- =
-------------------------------------------- =
--></P></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></F=
ONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT=
></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></=
FONT></FONT></BODY></HTML>

