{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \n\n"},"Sender":{"kind":"string","value":"oportunity@cells4free.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1566,"string":"1,566"}}},{"rowIdx":779,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/74."},"message":{"kind":"string","value":"Why the RIAA owes us all an apology ,\n _____________________DAVID COURSEY_____________________\n\nWHY THE RIAA OWES US ALL AN APOLOGY\n\n When recording industry types last week tried\n to get provisions against music swappers\n included in anti-terrorism legislation,\n they trivialized everyone involved in America's\n fight against terrorism--and proved themselves\n to be absolutely the sort of people who'd do\n anything for a buck.\n\nhttp://cgi.zdnet.com/slink?/adeskb/adt1018/2818346:8593142\n\n\n#\n\n\n_____________________NEWS ANALYSIS_____________________\n\nPatrick Houston\n\n WHAT'S MS' ULTIMATE GOAL FOR XP? HINT: WAY MORE THAN AN OS\n\n When you first try out Windows XP, you're\n reminded no less than five--count 'em,\n five--times to sign up for its Passport\n authentication service. These pleas\n speak of far more than Microsoft's persistence.\n Like what? Like how it plans to become\n another AOL inside an OS.\n\n PLUS:\n\n APPLE HINTS AT 'BREAKTHROUGH' DEVICE.\n WHAT COULD IT BE?\n\n PALM V GETS SOME BLACKBERRY JUICE\n\nhttp://cgi.zdnet.com/slink?/adeskb/adt1018/2818350:8593142\n\n\n\n\n\n_____________________EXPERT ADVICE_____________________\n\n\nC.C. Holland\n\n\n BANISH YOUR BLANK WALLS WITH HELP FROM THE WEB\n\n If you want to decorate your space but are having\n trouble finding the right posters or prints,\n just turn to your computer! C.C. shows you\n where to find great selections of art online\n (and get your picks delivered to your door).\n\n\n\nhttp://cgi.zdnet.com/slink?/adeskb/adt1018/2818372:8593142\n\n\n=09=09=09> > > > >\n\n\nJanice Chen\n\n SLOW PC? NO PROBLEM! FIX UP YOUR CLUNKER FOR UNDER\n $50\n\n Sure, if you have a need for speed, you could\n buy a new PC. But you can also streamline your\n older PC by tuning up your hard drive with a\n good utility. Janice hunts for bargains (and\n freebies!) that'll rev you up in no time.\n\n\nhttp://cgi.zdnet.com/slink?/adeskb/adt1018/2818264:8593142\n\n\n=09=09=09> > > > >\n\n\nPreston Gralla\n\n\n TURN YOUR PC INTO A MOVIE THEATER--FOR FREE!\n\n If you like finding music online, you'll love\n getting movies. With the right tools, you\n can download, watch, and trade films and videos\n on your PC. Preston offers up three freebies\n that'll have you reaching for the popcorn.\n\n\n\nhttp://cgi.zdnet.com/slink?/adeskb/adt1018/2818260:8593142\n\n\n=09=09=09> > > > >\n\n\n_____________________CRUCIAL CLICKS_____________________\nMake sure you see these features on ZDNet today!\n\nMICROSOFT.COM GAFFE REVEALS PASSWORDS\nhttp://www.zdnet.com/techupdate/stories/main/0,14179,2818129,00.html\n\n\nENTERPRISE E-MAIL GETS UP AND GOES\nhttp://chkpt.zdnet.com/chkpt/adeskclicks/www.zdnet.com/techupdate/stories/m=\nain/0,14179,2817463,00.html\n\nCEO CRAIG BARRETT SHARES INTEL'S ITANIUM VISION\nhttp://chkpt.zdnet.com/chkpt/adeskclicks/www.zdnet.com/techupdate/stories/m=\nain/0,14179,2816881,00.html\n\n\n\n******************ELSEWHERE ON ZDNET!******************\n\nFind the facts on firewalls and compare other security solutions.\nhttp://cgi.zdnet.com/slink?151259:8593142\n\nLaid off? Check out over 90,000 tech job listings.\nhttp://cgi.zdnet.com/slink?151260:8593142\n\nTake SmartPlanet's online classes for the skills you need to get ahead.\nhttp://cgi.zdnet.com/slink?151261:8593142\n\nGet 100=12s of IT downloads FREE from TechRepublic.\nhttp://cgi.zdnet.com/slink?151262:8593142\n\neBusiness Update: Can dot-coms benefit from filing for bankruptcy?\nhttp://cgi.zdnet.com/slink?151263:8593142\n\n*************************************************************\n\n\n\n\nAnchorDesk comes to you free of charge as a\nservice of ZDNet. On its companion Web site,\nAnchorDesk includes full details on the stories\nyou see above, plus late-breaking news, links\nto in-depth information, and much more. Visit:\nhttp://www.anchordesk.com\n\nTo subscribe, unsubscribe, or make changes to your subscription,\nplease go to:\n http://cgi.zdnet.com/slink?130228\n\nWe are sending this news alert to the address:\npallen@ENRON.COM\nPlease make sure to provide this address in\nall your e-mail messages to us. Thanks!\n\nCopyright ) 2001 ZD Inc. ZDNet is a registered\nservice mark of ZD Inc. ZDNet Logo is a service\nmark of ZD Inc.\n\n\n ###"},"Sender":{"kind":"string","value":"anchordesk_daily@anchordesk.zdlists.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1567,"string":"1,567"}}},{"rowIdx":780,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/75."},"message":{"kind":"string","value":"Receive up to $500 in Grocery Savings ,\n [IMAGE]\t\n\t\t [IMAGE] [IMAGE] [IMAGE] has been placed on hold, for you Phillip! [IMAGE] \t\n\t\t[IMAGE]\t\n\t Phillip, We are prepared to send you the necessary documents to claim your $500.00 in name-brand grocery coupons. Just click here to find out how to receive your grocery coupons now! I must hear from you immediately though, we are holding the coupons for you, Phillip. To ensure that you receive it right away, click here now ! Don't delete this email. Click here to find out how to receive your $500.00 in name-brand grocery coupons. This is a limited time offer, please click here now ! \t [IMAGE] [IMAGE] [IMAGE] \t\n\t\t [IMAGE] P.S. Click here to find out how to get your $500.00 in name-brand grocery coupons today! Only Phillip may claim these free coupons. So click here now . *In order for you to receive your $500.00 in grocery coupons, you must activate your new nationwide Toll-Free Voice Messaging Service. If you do not wish to receive future promotions, click here to unsubscribe."},"Sender":{"kind":"string","value":"itsimazing@response.etracks.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1568,"string":"1,568"}}},{"rowIdx":781,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/76."},"message":{"kind":"string","value":"Expense Reports Awaiting Your Approval ,\n The following reports have been waiting for your approval for more than 4 days. Please review.\n\nOwner: Jane M Tholt\nReport Name: El Paso Technical Conference\nDays In Mgr. Queue: 13"},"Sender":{"kind":"string","value":"enron_update@concureworkplace.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1569,"string":"1,569"}}},{"rowIdx":782,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/77."},"message":{"kind":"string","value":"Challenge friends to Planters Crunch Time Football! ,\n [IMAGE]=09\n\n\n =09 [IMAGE] Challenge friends to Planters Crunch Time Football! [IMA=\nGE] Play Planters Crunch Time now! =09 =09\n\n\n =09 =09 Hey, phillip! It's the big game. You're down by 5 and need to s=\ncore in 4 plays or less. Your friend's defense, however, has other plans. D=\no you run a sweep? Or go for it all with the bomb? In Planters Crunch Time =\nFootball, YOU decide. Welcome to the Internet's first-ever football game =\nthat, via e-mail, pits you against a friend in an exciting, \"do or die\" mat=\nch-up. You pick your plays, your friend chooses his, and both of you watch =\nthe results unfold in graphic, play-by-play action. So, huddle up, baby -=\n- Planters Crunch Time is fast, fun, and FREE! PLAY PLANTERS CRUNCH TIME=\n FOOTBALL You received this e-mail because you registered on CBS Sports=\nLine.com. If you do not want to receive these special e-mail offers you can=\n unsubscribe by clicking this link: http://www.sportsline.com/u/newslette=\nrs/newsletter.cgi?email=3Dpallen@enron.com or by replying to this message =\nwith \"unsubscribe\" in the subject line. You are subscribed as pallen@enron.=\ncom. Although we are sending this e-mail to you, SportsLine.com is not resp=\nonsible for the advertisers' content and makes no warranties or guarantees =\nabout the products or services advertised. SportsLine.com takes your privac=\ny seriously. To learn more about SportsLine.com's use of personal informat=\nion, please read our Privacy Statement at http://cbs.sportsline.com/u/use=\nrservices/privacy.htm =09 =09 =09\n\n\n[IMAGE]=09"},"Sender":{"kind":"string","value":"cbssportsline.com_planters@mail.0mm.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1570,"string":"1,570"}}},{"rowIdx":783,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/79."},"message":{"kind":"string","value":"GMC's Bold New SUV ,\n =09=09=09Sponsored Content=09\n[IMAGE] =09[IMAGE]=09 =09[IMAGE]=09\n\n\n[IMAGE] =09 Envoy: GMC's Bold New SUV The GMC Envoy is one of the nic=\nest surprises of the 2002 model year. It represents a comprehensive improv=\nement over its Jimmy predecessor, making it one of the most competitive mi=\nd-sized SUVs on the market. The fact that it is still \"truck-based\" - whi=\nch essentially refers to the full-frame construction that makes its Yukon =\nbig brother such a beefy workhorse - does not mean that this SUV rides lik=\ne a truck. Quite the contrary, the Envoy is smooth and refined in a way th=\nat would have been unthinkable just a few years ago. Of course, the market=\n in which the Envoy competes has become packed with excellent choices, wit=\nh everyone from Acura to Mercury entering the fray. We drove an Envoy SLE =\n4WD to find out how it stacks up. Full Review > > You are re=\nceiving this Special Edition newsletter because you signed up to receive i=\nnformation and updates from Autoweb.com. In addition to our monthly newsle=\ntter, we occasionally send Special Edition newsletters with information on=\n new vehicles that we think will interest you. If you no longer wish to re=\nceive Autoweb.com's monthly newsletter, please follow the instructions bel=\now. =09[IMAGE]=09 [IMAGE] Experience Envoy Now Does Envoy Measure Up=\n? Check out Envoy's DVD =09\n\n\n=09=09 =09"},"Sender":{"kind":"string","value":"leave-htmlnews-2508405s@lists.autoweb.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1571,"string":"1,571"}}},{"rowIdx":784,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/8."},"message":{"kind":"string","value":"PHILLIP, I have got to share this with you ,\n [IMAGE]\nFREE* Digital Camera!\nFREE* DIGITAL CAMERA VOUCHER=09\nDIGITAL CAMERA TRANSFER SYSTEMS / DISTRIBUTION CENTER=09\n=09\n=09\n\n\n PENDING FREE* GIFT: DIGITAL CAMERA ACTION: CLICK HERE EXPIRES: 1/=\n14/02 ID NUMBER: 7746620019-J WE HAVE BEEN AUTHORIZED BY THE SPONSOR =\nOF THIS OFFER TO ALLOCATE THIS DIGITAL CAMERA PURSUANT TO THE ALL THE DETAI=\nLS WITHIN AND REGISTERED BY THE RECIPIENTS OF THIS DOCUMENT WITHIN THE ALLO=\nTED TIME PERIOD Good news PHILLIP! ! You have made the Digital Camera=\n Selection list. This means you get a FREE* Digital Camera and save money o=\nn your phone bill through Sprint's long distance plan. To receive all of =\nthis, click here now! Get ready, PHILLIP, you will immediately receive a=\nll the information you need. So sign up for Sprint's 7? AnyTimeSM Online pl=\nan and the FREE* Digital Camera is yours!** What are you waiting for... c=\nlick here now! FREE DIGITAL CAMERA SELECTION LIST PHILLIP FREE GIFT=\n ***CONFIDENTIAL*** ***CONFIDENTIAL*** ***CONFIDENTIAL*** =\nPHILLIP DIGITAL CAMERA ***CONFIDENTIAL*** ***CONFIDENTIAL*** =\n ***CONFIDENTIAL*** [IMAGE] [IMAGE] [IMAGE] PHILLIP-7746620019-=\nJ [IMAGE] =09\n\n\n *Requires change of state-to-state long distance carrier to Sprint, remain=\ning a customer for 90 days and completion of redemption certificate sent by=\n mail. **Some restrictions apply, see site for details. Promotion exclude=\ns current Sprint customers. =09"},"Sender":{"kind":"string","value":"unsubscribe-i@networkpromotion.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1572,"string":"1,572"}}},{"rowIdx":785,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/80."},"message":{"kind":"string","value":"Western Price Survey 10/17/01 ,\n Attached is the midweek report.\n\nThe following section of this message contains a file attachment\nprepared for transmission using the Internet MIME message format.\nIf you are using Pegasus Mail, or any another MIME-compliant system,\nyou should be able to save it or view it from within your mailer.\nIf you cannot, please ask your system administrator for assistance.\n\n ---- File information -----------\n File: Spotwed640.doc\n Date: 17 Oct 2001, 17:45\n Size: 22528 bytes.\n Type: MS-Word\n\n - Spotwed640.doc"},"Sender":{"kind":"string","value":"aod@newsdata.com"},"Receiver(s)":{"kind":"string","value":"western.price.survey.contacts@ren-8.cais.net"},"__index_level_0__":{"kind":"number","value":1573,"string":"1,573"}}},{"rowIdx":786,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/81."},"message":{"kind":"string","value":"Your Approval is Overdue: Access Request for matt.smith@enron.com ,\n This request has been pending your approval for 5 days. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000067320&Page=Approval to review and act upon this request.\n\n\n\n\n\nRequest ID : 000000000067320\nRequest Create Date : 10/11/01 10:24:53 AM\nRequested For : matt.smith@enron.com\nResource Name : Risk Acceptance Forms Local Admin Rights - Permanent\nResource Type : Applications"},"Sender":{"kind":"string","value":"arsystem@mailman.enron.com"},"Receiver(s)":{"kind":"string","value":"k..allen@enron.com"},"__index_level_0__":{"kind":"number","value":1574,"string":"1,574"}}},{"rowIdx":787,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/82."},"message":{"kind":"string","value":"We're looking for a Winner, Phillip! ,\n [IMAGE] \t\n\tHey, Phillip - it's trivia time! Think you know TV? Take the iWon TV Trivia Challenge - once you've answered the question, you'll be eligible to win the Ultimate Home Theatre System valued at over $7,886 (Nothing trivial about that!) \t\n\t[IMAGE] \t\n[IMAGE] [IMAGE] [IMAGE] [IMAGE] \t[IMAGE] \t\n\tGood luck! - The iWon Team \t\n\t[IMAGE] \t\n\t[IMAGE] \t\n\t No Purchase Necessary For Sweepstakes Subject To Official Rules Forgot your member name? It is: PALLEN70 Forgot your iWon password? Click here. You received this email because when you registered at iWon you agreed to receive email from us. To unsubscribe from one or more email categories, please click below. Please note, changes may take up to one week to process. If you're not signed in, you will need to do so before you can update your profile. Click here. [IMAGE]"},"Sender":{"kind":"string","value":"promo@info.iwon.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1575,"string":"1,575"}}},{"rowIdx":788,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/83."},"message":{"kind":"string","value":"Pacific Northwest action prevented shortages ,\n =20\n[IMAGE]=09\n\n\n [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [I=\nMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] =09 [IMAGE]=\n [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [I=\nMAGE] [IMAGE] [IMAGE] Updated: Oct. 18, 2001 [IMAGE] [IMA=\nGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Pacific Northwest action=\n prevented shortages The Pacific Northwest, despite severe trials and trib=\nulations, survived the unprecedented energy crisis that engulfed most of th=\ne western United States, a report by regional planning officials said. [IMA=\nGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] =\n[IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] =\n [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE=\n] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] =\n [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [I=\nMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] =\n [IMAGE] [IMAGE] [IMAGE] Deregulation of EU gas markets slow =\nDRI-WEFA study examines market flaws Obstacles still exist to competition =\n [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [=\nIMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Cheap hydro dr=\nies up Nordic countries search for new options Interconnectors could help =\n Customer participation forces prices down [IMAGE] [IMAGE] [IMAGE]=\n [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE=\n] [IMAGE] [IMAGE] Is hydrogen poised for market acceleration? Fue=\nl cells could lead to decreased oil dependence The 'chicken and egg' infra=\nstructure dilemma [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMA=\nGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] AGA: U.S. wor=\nking gas in storage up 63 Bcf full story... KMP distribution up 29%; net=\n income increases 66% full story... Expect EPA's utility emission positio=\nn by year's end full story... Florida examining allowing merchant plants =\nfull story... Plug Power cuts jobs full story... Duke backs away from B=\nrazilian deal full story... AES drops bid for four Armenian power grids f=\null story... Williams Communications signs deal with Progress Telecom ful=\nl story... H2fuel technology could reduce cost of hydrogen production ful=\nl story... Panda Energy, Alliant Energy form JV full story... To view a=\nll of today's Executive News headlines, click here [IMAGE] [=\nIMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Copyright ? 2001 - =\nPlatts, All Rights Reserved [IMAGE] Market Brief Wednesday, October 17=\n Stocks Close Change % Change DJIA 9,232.97 (151.3) -1.61% DJ 15 Util. 314=\n.97 (3.6) -1.12% NASDAQ 1,646.34 (75.73) -4.40% S&P 500 1,076.28 (21.3) -1.=\n94% Market Vols Close Change % Change AMEX (000) 219,425 82,234.0 59.9=\n4% NASDAQ (000) 2,289,678 444,835.0 24.11% NYSE (000) 1,443,498 239,133.0 =\n 19.86% Commodities Close Change % Change Crude Oil (Nov) 21.79 (0.21) =\n-0.95% Heating Oil (Nov) 0.621 (0.006) -0.91% Nat. Gas (Henry) 2.44 (0.152)=\n -5.86% Propane (Nov) 40.4 (0.100) -0.25% Palo Verde (Nov) 28.00 0.75 2.75=\n% COB (Nov) 29.00 0.00 0.00% PJM (Nov) 27.25 0.25 0.93% Dollar US $ C=\nlose Change % Change Australia $ 1.948 (0.002) -0.10% Canada $ 1.568 0.0=\n04 0.26% Germany Dmark 2.169 0.018 0.84% Euro 0.9034 (0.004) -0.48% Ja=\npan ?en 121.30 0.000 0.00% Mexico NP 9.24 0.040 0.43% UK Pound 0.6917 =\n0.0011 0.16% Foreign Indices Close Change % Change Arg MerVal 251.61 8=\n.46 3.48% Austr All Ord. 3,170.00 24.20 0.77% Braz Bovespa 11271.49 13.64=\n 0.12% Can TSE 300 6956.8 (70.09) -1.00% Germany DAX 4706.07 79.59 1.72%=\n HK HangSeng 10260.81 112.32 1.11% Japan Nikkei 225 10755.45 117.63 1.11=\n% Mexico IPC 5541.88 (0.73) -0.01% UK FTSE 100 5,203.40 120.80 2.38% =\n Source: Yahoo! & TradingDay.com =09 [IMAGE] [IMAGE] [IMAGE] [IM=\nAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMA=\nGE] [IMAGE] [IMAGE] [IMAGE] =09 =09\n\n\n - bug_black.gif=20\n - Market briefs.xls"},"Sender":{"kind":"string","value":"ei_editor@ftenergy.com"},"Receiver(s)":{"kind":"string","value":"einsighthtml@list1.resdata.com"},"__index_level_0__":{"kind":"number","value":1576,"string":"1,576"}}},{"rowIdx":789,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/84."},"message":{"kind":"string","value":"MSFT Downgraded by A.G. Edwards ,\n If you cannot read this email, please click here .=20\n\nEarnings.com - MSFT Upgrade/Downgrade History\nEarnings.com =09[IMAGE] =09\n=09 [IMAGE] View Today's Upgrades/Downgrades/Coverage Initiated Briefing =\nMicrosoft Corporation (MSFT) Date Brokerage Firm Action Details 10/17=\n/2001 A.G. Edwards Downgraded to Hold from Buy 10/10/2001 SOUNDVIEW =\nTECHNOLOGY Downgraded to Buy from Strong Buy 10/04/2001 A.G. Edwards =\n Downgraded to Buy from Strong Buy 09/25/2001 Deutsche Bank Coverage =\nInitiated at Buy 09/25/2001 BERNSTEIN Coverage Initiated at Outperform=\n 09/24/2001 Thomas Weisel Downgraded to Buy from Strong Buy 09/20/=\n2001 Dain Rauscher Wessels Coverage Initiated at Buy 07/20/2001 Salom=\non Smith Barney Downgraded to Outperform from Buy 07/12/2001 Pacific =\nCrest Upgraded to Strong Buy from Buy 07/12/2001 CSFB Upgraded to Str=\nong Buy from Buy 06/28/2001 J.P. Morgan Upgraded to Buy from Lt Buy =\n 06/14/2001 Prudential Securities Coverage Initiated at Buy 04/20/2001=\n Thomas Weisel Upgraded to Strong Buy from Mkt Perform 04/20/2001 Sal=\nomon Smith Barney Upgraded to Buy from Outperform 04/20/2001 Goldman S=\nachs Upgraded to Recomm List from Mkt Outperform 03/21/2001 Banc of Am=\nerica Coverage Initiated at Mkt Perform 03/09/2001 FS Van Kasper Down=\ngraded to Buy from Strong Buy 02/08/2001 Merrill Lynch Downgraded to =\nLt Accum from Lt Buy 02/02/2001 CSFB Coverage Initiated at Buy 01/=\n30/2001 Pacific Crest Coverage Initiated at Buy 12/15/2000 Robertson =\nStephens Downgraded to Lt Attractive from Buy 12/15/2000 Dresdner Kle=\ninwort Benson Downgraded to Hold from Buy 12/13/2000 Prudential Secur=\nities Downgraded to Hold from Accumulate 12/08/2000 ING Barings Down=\ngraded to Buy from Strong Buy 11/21/2000 Dresdner Kleinwort Benson Co=\nverage Initiated at Buy 10/24/2000 Salomon Smith Barney Coverage Initi=\nated at Outperform 10/04/2000 Tucker Anthony Coverage Initiated at Buy=\n 10/03/2000 A.G. Edwards Upgraded to Buy from Accumulate 07/19/2000=\n Prudential Securities Downgraded to Accumulate from Strong Buy 07/19=\n/2000 S G Cowen Downgraded to Neutral from Buy 06/21/2000 CIBC World=\n Markets Upgraded to Buy from Hold 04/24/2000 Goldman Sachs Downgrade=\nd to Market Outperform from Recommended List 04/24/2000 Thomas Weisel =\n Downgraded to Market Perform from Buy 04/24/2000 S G Cowen Downgrade=\nd to Buy from Strong Buy 04/03/2000 CIBC World Markets Downgraded to =\nHold from Buy Briefing.com is the leading Internet provider of live =\nmarket analysis for U.S. Stock, U.S. Bond and world FX market participants.=\n ? 1999-2001 Earnings.com, Inc., All rights reserved about us | contact=\n us | webmaster | site map privacy policy | terms of service =09"},"Sender":{"kind":"string","value":"webmaster@earnings.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1577,"string":"1,577"}}},{"rowIdx":790,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/85."},"message":{"kind":"string","value":"TECH ALERT: Apple Beats Estimates; EMC, AOL, TI Also Report ,\n __________________________________\nTECHNOLOGY ALERT\nfrom The Wall Street Journal\n\n\nOct. 17, 2001\n\nApple Computer easily beat lowered quarterly profit expectations late\nWednesday but lowered its outlook, citing the weak economy and political\nuncertainty.\nSee: http://wsj.com/articles/SB1003335276102944680.htm\n\nAOL Time Warner, Texas Instruments, Siebel Systems, EMC and Handspring also\nposted quarterly results Wednesday. See more information at:\nhttp://interactive.wsj.com/pages/techmain.htm\n\n\n__________________________________\nADVERTISEMENT\n\nReceive a report on transformational strategies\nto create value through personalized self-service!\n\nhttp://www.broadvision.com/jump/wsjb.html\n\nBroadVision is the leading supplier of Enterprise\nSelf-Service (ESS), delivering business value\nthrough business process transformation.\n\n_________________________________\nSUBSCRIPTION INFORMATION\n\nTO REMOVE YOURSELF from this list, see:\nhttp://interactive.wsj.com/user-cgi-bin/searchUser.pl?action=emailalert\n\nThen uncheck the appropriate box to unsubscribe from this list. Click on\nthe \"save selections\" button.\n\nFor further questions, please call our customer service department at\n1-800-369-2834 or 1-609-514-0870 between the hours of 8 a.m. and 9 p.m\nEastern Monday-Friday or e-mail inquiries@interactive.wsj.com.\n\n__________________________________\nCopyright 2001 Dow Jones & Company, Inc. All Rights Reserved."},"Sender":{"kind":"string","value":"e-mail.center@wsj.com"},"Receiver(s)":{"kind":"string","value":"tech_alert@listserv.dowjones.com"},"__index_level_0__":{"kind":"number","value":1578,"string":"1,578"}}},{"rowIdx":791,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/86."},"message":{"kind":"string","value":"EB30C2 ,\n Starting next Wednesday you have EB30C2 for your Fundies Meeting from 3:00 PM to 4:30 PM\n\n-Ina"},"Sender":{"kind":"string","value":"ina.rangel@enron.com"},"Receiver(s)":{"kind":"string","value":"mike.grigsby@enron.com, keith.holst@enron.com, jay.reitmeyer@enron.com, "},"__index_level_0__":{"kind":"number","value":1579,"string":"1,579"}}},{"rowIdx":792,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/87."},"message":{"kind":"string","value":"Confirmation of Simulation Meeting ,\n Phillip,\n\nThis message is to confirm our meeting with you on, Friday, October 19th\nbeginning at 9:00 am in Conference Room 13C2 3AC. Attendees from our team\nwill include Mery Brown and Laura de la Torre.\n\nPlease let me know if you have further questions at 713-345-6686.\n\nThank you.\n\n\n\n\nLaura de la Torre\nAccenture\nResources\nHouston, Texas\nDirect Dial 713.837.2133\nOctel 83 / 72133\n\n\nThis message is for the designated recipient only and may contain\nprivileged or confidential information. If you have received it in error,\nplease notify the sender immediately and delete the original. Any other\nuse of the email by you is prohibited."},"Sender":{"kind":"string","value":"laura.a.de.la.torre@accenture.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1580,"string":"1,580"}}},{"rowIdx":793,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/88."},"message":{"kind":"string","value":"Positions ,\n phillip,\n\nplease see attached.\n\n \n\n-randy"},"Sender":{"kind":"string","value":"randy.bhatia@enron.com"},"Receiver(s)":{"kind":"string","value":"k..allen@enron.com"},"__index_level_0__":{"kind":"number","value":1581,"string":"1,581"}}},{"rowIdx":794,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/89."},"message":{"kind":"string","value":"money back on your trade-ins, and great hp lease deals ,\n If you wish to unsubscribe please CLICK HERE: http://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJE\nif you received this email by error, please reply to: unsubscribe@theb2bvoice.com\n\n================================================================\n\nget ahead in business - quickly\nwith hp technology\n\nlife in the fast lane: win a trip to Skip Barber Racing School\nRegister to win two 3-day passes to Skip Barber Racing School (plus $4,000 for travel expenses) when you save money and get down to business faster at our new products site.\nhttp://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJF\n\nspecial deals\n\nequal opportunity savings: money back on hp and non-hp trade-ins\nWith the new HP Trade-In program, you'll get money back on your HP purchases when you trade in HP or even non-HP equipment. Enter as a \"guest member\" to quickly check your trade-in values.\nhttp://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJG\n\nas good as it gets: walk-away lease deals on color hp LaserJets\nLease any color HP LaserJet printer at a 36-month rate and walk away penalty free in 18 months with the purchase or lease of a next-generation color HP LaserJet.\nhttp://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJH\n\nmovin' on up: prime time for big savings on hp LaserJet printers\nGet rebates of up to $2,000 - or a free HP Jornada color pocket PC - when you purchase qualifying HP LaserJet and color LaserJet printers, or trade in qualifying printers.\nhttp://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJI\n\none size fits all: great deals for all businesses, big or small\nStop by HP's new one-stop PC, notebook, and server promotion site for big savings, lease specials, and free equipment with purchase.\nhttp://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJJ\n\nthe odds are in your favor: get 31 chances to win a digital camera\nYou'll get a chance to win one of ten HP PhotoSmart C500xi digital cameras when you subscribe to any one of HP's free monthly e-newsletters. Then, if you tell your friends and colleagues about HP e-newsletters, you'll get three additional sweepstakes entries for each one of them that subscribes (for up to 10 people). If ten of your friends subscribe, that's up to 30 additional chances for you to win.\nhttp://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJIAA\n\nAll offers are for a limited time only, have certain restrictions and are subject to change without notice. Please see individual special offer websites for details.\n\n================================================================\n\nYou are receiving this message because you opted in to receive online promotions."},"Sender":{"kind":"string","value":"editor@theb2bvoice.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1582,"string":"1,582"}}},{"rowIdx":795,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/9."},"message":{"kind":"string","value":"Your Weekly Movie Showtimes from Amazon.com ,\n [IMAGE]\n[IMAGE]=09=09=09=09=09Showtimes starting Friday, December 28, 2001, near Z=\nIP code 77055 To receive showtimes for a ZIP code different from 77055 in =\nfuture e-mails, click here . =09[IMAGE]=09\n[IMAGE]=09 =09 [IMAGE] Now Playing: The Royal Tenenbaums The Royal Tenenb=\naums RGene Hackman, Gwyneth Paltrow Royal Tenenbaum had three children=\n--all geniuses. And when this absentee father returns one winter, with an =\nunexpected revelation, the Tenenbaums find that genius doesn't help any in=\n reuniting a dysfunctional family. From Wes Anderson, the director of Bott=\nle Rocket and Rushmore, The Royal Tenenbaums is the hilarious story of =\na family of brilliant eccentrics--and how they got that way. Gene Hackman,=\n Anjelica Huston, Ben Stiller, Gwyneth Paltrow, Luke Wilson, Owen Wilson, =\nand Bill Murray star. [IMAGE]Visit our Royal Tenenbaums Store =09 =09=\n=09=09[IMAGE]=09\n[IMAGE]=09 =09=09Showtimes for The Royal Tenenbaums AMC Studio 30 (Ame=\nrican Multi-Cinema) 2949 Dunvale, Houston, TX 77063, 281-319-4262 Showtime=\ns: 12:00pm | 2:30pm | 5:10pm | 7:40pm | 10:10pm | 12:35am =09 Viewer Favo=\nrites Updated Weekly cover The Lord of the Rings Harry Potter and =\nthe Philosopher's Stone Monsters, Inc. Ocean's Eleven The Royal Te=\nnenbaums Go!Complete list Visit The Majestic [IMAGE] Sometimes =\nyour life comes into focus one frame at a time. Jim Carrey stars in The M=\najestic , from the director of The Green Mile. =09 =09[IMAGE]=09\n[IMAGE]=09=09=09=09=09 Films Opening This Week: Ali RWill Smith [IMAGE=\n]See Showtimes and more In the Bedroom RTom Wilkinson, Sissy Spacek [=\nIMAGE]See Showtimes and more Kate & Leopold PG-13Meg Ryan, Hugh Jackma=\nn [IMAGE]See Showtimes and more =09[IMAGE]=09\n[IMAGE]=09=09=09=09=09 Now Playing in Theaters near ZIP Code 77055 Please =\nnote: These showtimes start on Friday, December 28, 2001. To receive show=\ntimes for a ZIP Code different from 77055 in future e-mails, click here .=\n =09[IMAGE]=09\n[IMAGE]=09=09=09=09=09 | AMC Studio 30 | =09[IMAGE]=09\n[IMAGE]=09=09=09=09=09 1. AMC Studio 30 (American Multi-Cinema) 2=\n949 Dunvale, Houston, TX 77063, 281-319-4262 Ali RWill Smith Average=\n Customer Review: 5 out of 5 stars Showtimes: 11:45am | 12:50pm | 12:55pm=\n | 2:00pm | 3:05pm | 4:10pm | 5:20pm | 6:25pm | 7:30pm | 8:40pm | 9:45pm |=\n 10:50pm | 12:00am A Beautiful Mind PG-13Russell Crowe, Ed Harris A=\nverage Customer Review: 4.5 out of 5 stars Showtimes: 1:05pm | 2:05pm | 4=\n:00pm | 5:00pm | 7:00pm | 8:00pm | 9:55pm | 10:55pm | 12:45am Behind =\n Enemy Lines PG-13Owen Wilson, Gene Hackman Average Customer Review: 4 o=\nut of 5 stars Showtimes: 12:25pm | 2:55pm | 5:20pm | 7:50pm | 10:15pm | =\n12:40am Harry Potter and the Philosopher's Stone PGDaniel Radcliffe, =\nRupert Grint Average Customer Review: 4.5 out of 5 stars Showtimes: 12:3=\n0pm | 1:30pm | 3:50pm | 4:45pm | 7:15pm | 8:05pm | 11:20pm How High =\n RMethod Man, Redman Average Customer Review: 3.5 out of 5 stars Showtim=\nes: 12:35pm | 1:50pm | 2:50pm | 4:05pm | 5:05pm | 6:20pm | 7:20pm | 8:30p=\nm | 9:35pm | 10:45pm | 11:50pm | 12:55am In the Bedroom RTom Wilkins=\non, Sissy Spacek Average Customer Review: 5 out of 5 stars Showtimes: 1:=\n35pm | 4:35pm | 7:30pm | 10:25pm Jimmy Neutron: Boy Genius GDebi D=\nerryberry, Rob Paulsen Average Customer Review: 3.5 out of 5 stars Showti=\nmes: 12:15pm | 1:00pm | 2:20pm | 3:05pm | 4:25pm | 5:10pm | 6:30pm | 8:35=\npm | 10:40pm | 12:45am Joe Somebody PGTim Allen Average Customer Rev=\niew: 2.5 out of 5 stars Showtimes: 12:20pm | 1:40pm | 2:40pm | 3:55pm | =\n5:10pm | 6:15pm | 7:35pm | 8:35pm | 9:55pm | 10:55pm | 12:15am Kate =\n& Leopold PG-13Meg Ryan, Hugh Jackman Average Customer Review: 4 out of =\n5 stars Showtimes: 12:10pm | 1:35pm | 3:10pm | 4:30pm | 5:50pm | 7:10pm =\n| 8:30pm | 9:50pm | 11:15pm | 12:30am The Lord of the Rings: The Fellow=\nship of the Ring PG-13Elijah Wood, Ian McKellen Average Customer Review:=\n 4.5 out of 5 stars Showtimes: 11:55am | 12:30pm | 1:45pm | 3:00pm | 3:4=\n0pm | 4:15pm | 5:30pm | 6:45pm | 7:25pm | 8:00pm | 9:15pm | 10:30pm | 11:1=\n0pm | 11:45pm | 12:50am The Majestic PGJim Carrey, Martin Landau A=\nverage Customer Review: 3.5 out of 5 stars Showtimes: 12:35pm | 2:00pm | =\n3:50pm | 5:15pm | 7:05pm | 8:25pm | 10:15pm | 11:30pm Monsters, Inc. =\n GJohn Goodman, Billy Crystal Average Customer Review: 4.5 out of 5 stars =\n Showtimes: 12:30pm | 2:45pm | 5:05pm | 7:25pm Not Another Teen Mov=\nie RChyler Leigh, Jaime Pressly Average Customer Review: 3 out of 5 star=\ns Showtimes: 12:00pm | 2:10pm | 4:20pm | 6:35pm | 8:45pm | 9:40pm | 10:5=\n0pm | 11:50pm | 12:50am Ocean's Eleven PG-13George Clooney, Brad Pitt=\n Average Customer Review: 3.5 out of 5 stars Showtimes: 12:05pm | 1:45pm=\n | 3:05pm | 4:25pm | 5:40pm | 7:05pm | 8:20pm | 9:45pm | 11:00pm | 12:25am=\n The Royal Tenenbaums RGene Hackman, Gwyneth Paltrow Average Custo=\nmer Review: 5 out of 5 stars Showtimes: 12:00pm | 2:30pm | 5:10pm | 7:40=\npm | 10:10pm | 12:35am The Spy Game RRobert Redford, Brad Pitt Avera=\nge Customer Review: 4 out of 5 stars Showtimes: 10:20am | 12:55pm Va=\nnilla Sky RTom Cruise, Pen?lope Cruz Average Customer Review: 3 out of =\n5 stars Showtimes: 12:25pm | 12:55pm | 2:15pm | 3:20pm | 5:15pm | 6:15pm=\n | 7:10pm | 8:10pm | 9:10pm | 10:05pm | 11:05pm | 12:05am =09[IMAGE]=\n=09\n[IMAGE]=09=09=09=09=09Return to Top We hope you enjoyed receiving this=\n newsletter. However, if you'd like to unsubscribe, please use the link bel=\now or click the Your Account button in the top right corner of any page on=\n the Amazon.com Web site. Under the E-mail and Subscriptions heading, clic=\nk the \"Manage your Weekly Movie Showtimes e-mail\" link. http://www.amazo=\nn.com/movies-email Copyright 2001 Amazon.com, Inc. All rights reserved. =\nYou may also change your communication preferences by clicking the followin=\ng link: http://www.amazon.com/communications =09[IMAGE]=09\n=09=09=09=09=09=09 =09"},"Sender":{"kind":"string","value":"showtimes@amazon.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1583,"string":"1,583"}}},{"rowIdx":796,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/90."},"message":{"kind":"string","value":"Request Submitted: Access Request for mog.heu@enron.com ,\n You have received this email because you are listed as a data approver. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000069328&Page=Approval to review and act upon this request.\n\n\n\n\nRequest ID : 000000000069328\nRequest Create Date : 10/18/01 1:39:02 PM\nRequested For : mog.heu@enron.com\nResource Name : EOL US NatGas Execute Website ID(Trader Access - Website)\nResource Type : Applications"},"Sender":{"kind":"string","value":"arsystem@mailman.enron.com"},"Receiver(s)":{"kind":"string","value":"approval.eol.gas.traders@enron.com"},"__index_level_0__":{"kind":"number","value":1584,"string":"1,584"}}},{"rowIdx":797,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/91."},"message":{"kind":"string","value":"Request Submitted: Access Request for mog.heu@enron.com ,\n You have received this email because you are listed as a security approver. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000069328&Page=Approval to review and act upon this request.\n\n\n\n\nRequest ID : 000000000069328\nRequest Create Date : 10/18/01 1:39:02 PM\nRequested For : mog.heu@enron.com\nResource Name : EOL US NatGas Trader\nResource Type : Applications"},"Sender":{"kind":"string","value":"arsystem@mailman.enron.com"},"Receiver(s)":{"kind":"string","value":"approval.eol.gas.traders@enron.com"},"__index_level_0__":{"kind":"number","value":1585,"string":"1,585"}}},{"rowIdx":798,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/92."},"message":{"kind":"string","value":"ISC - Customer Service Survey ,\n ISC - Customer Service Survey Ticket#HD0000000650010, Password Reset\n\n\n\n\n: Thank you for taking the time to fill out our Customer Service Survey.\nYour input is crucial to our continued efforts in establishing and providing you with World Class Support.\n\nPlease take a minute and complete the 5 question survey then submit it back to us when you are done.\n\nOnce again, thank you for your participation.\n\nISC Customer Care Group\n\nhttp://rc.enron.com/survey/survey_1.asp?id=000000000002507"},"Sender":{"kind":"string","value":"arsystem@mailman.enron.com"},"Receiver(s)":{"kind":"string","value":"pallen@enron.com"},"__index_level_0__":{"kind":"number","value":1586,"string":"1,586"}}},{"rowIdx":799,"cells":{"file":{"kind":"string","value":"allen-p/deleted_items/93."},"message":{"kind":"string","value":"Quarterly Managing Director Meeting - Monday, October 22 ,\n Please plan to attend the Quarterly Managing Director Meeting scheduled for Monday, October 22. An agenda will be distributed at the meeting. \n\nMeeting details are as follows:\n\nMonday, October 22\n8:30 - Noon\nHyatt Regency\nDogwood Room (located on the 3rd floor)\n\nA video connection will be made from the London office.\n\nPlease call if you have any questions.\nJoannie\n3-1769"},"Sender":{"kind":"string","value":"joannie.williamson@enron.com"},"Receiver(s)":{"kind":"string","value":"jeff.messina@enron.com, k..allen@enron.com, sally.beck@enron.com, "},"__index_level_0__":{"kind":"number","value":1587,"string":"1,587"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":7,"numItemsPerPage":100,"numTotalItems":211169,"offset":700,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjMyMDEzMywic3ViIjoiL2RhdGFzZXRzL2lsaGFteHgvZGF0YV9lbnJvb24iLCJleHAiOjE3NTYzMjM3MzMsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.zgJ12mcaKJzyyFhAVB2SYU3B0I5OS-_DQToyAr0X6ggSb-jdUDBMdvzEBxzTLkOI4A7ZrpM_gRecJzgmpJwOBQ","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
file
stringlengths
10
65
message
stringlengths
5
2.01M
Sender
stringlengths
5
112
Receiver(s)
stringlengths
0
9.83k
__index_level_0__
int64
0
517k
allen-p/deleted_items/404.
ANCHORDESK: iPod for Windows: Why Jobs must join the dark side , <!--[core.text]--> _____________________DAVID COURSEY_____________________ IPOD FOR WINDOWS: WHY JOBS MUST JOIN THE DARK SIDE It's the coolest thing many people say they've seen in a while: Apple's sleek new iPod music player. But here's the hitch: There's no Windows version right now. Will there be? I'm betting on it. And here's my plan for Steve Jobs' foray into darkness. http://cgi.zdnet.com/slink?/adeskb/adt1120/2826186:8593142 # _____________________NEWS ANALYSIS_____________________ Sylvia Carr MS TO SETTLE?... LINUX PDA SHIPS... OPEN SOURCE FACES REALITY... Microsoft may settle! Again! This time, it could get out of a slew of private antitrust suits by donating software to schools. A good cause, no doubt. But does that really make up for its legal violations? http://cgi.zdnet.com/slink?/adeskb/adt1120/2826278:8593142 _____________________EXPERT ADVICE_____________________ Stephen Howard-Sarin VIVA LAS VEGAS! YOU'RE STILL IN A COMDEX STATE OF MIND New products and people from Fall Comdex dominate this week's tally of top tech search terms. Why fly to Vegas when a search engine will bring you the latest? Stephen finds out what's piquing your interest--from Xbox and GameCube to Jorma Ollila and Harry Potter. http://cgi.zdnet.com/slink?/adeskb/adt1120/2826290:8593142 > > > > > Robert Vamosi HOW HACK ATTACKS ARE GETTING SMARTER--AND HARDER TO STOP Malicious users are learning to better outsmart their captors, a new report says. They're using hard-to-detect worms to carry out denial-of-service attacks, and targeting routers that could bring down whole portions of the Internet. What should you watch out for? Robert has the scoop. http://cgi.zdnet.com/slink?/adeskb/adt1120/2826211:8593142 > > > > > Preston Gralla MAKE WINDOWS YOUR OWN: 3 EASY WAYS TO CUSTOMIZE XP You've been playing with Microsoft's newest operating system for a month or so--now it's time to start bending it to your will. Though XP downloads are still hard to come by, Preston has found three that let you tweak the OS's look and optimize its performance. http://cgi.zdnet.com/slink?/adeskb/adt1120/2826167:8593142 > > > > > _____________________CRUCIAL CLICKS_____________________ Make sure you see these features on ZDNet today! DON'T MISS ZDNET'S HOLIDAY GIFT GUIDE http://chkpt.zdnet.com/chkpt/adeskclicks/http://www.zdnet.com/special/holiday2001/index.html CHECK OUT THE LATEST CD BURNERS http://chkpt.zdnet.com/chkpt/adeskclicks/http://www.zdnet.com/special/holiday2001/cdburner.html WHY YOU SHOULD OUTSOURCE YOUR SECURITY http://chkpt.zdnet.com/chkpt/adeskclicks/www.zdnet.com/techupdate/stories/main/0,14179,2822091,00.html ******************ELSEWHERE ON ZDNET!****************** Did you miss COMDEX? Get all the details in our special report. http://cgi.zdnet.com/slink?163581 Don't miss top price drops from premier vendors at ZDNet Shopper. http://cgi.zdnet.com/slink?163582 FREE trial offers from leading business and technology magazines. http://cgi.zdnet.com/slink?163583 Find perfect presents in our Holiday Gift Guide. http://cgi.zdnet.com/slink?163584 Check out the most popular notebooks, handhelds, cameras, and more. http://cgi.zdnet.com/slink?163585 *********************************************************** AnchorDesk comes to you free of charge as a service of ZDNet. On its companion Web site, AnchorDesk includes full details on the stories you see above, plus late-breaking news, links to in-depth information, and much more. Visit: http://www.anchordesk.com/ To subscribe, unsubscribe, or make changes to your subscription, please go to: http://cgi.zdnet.com/slink?130228 We are sending this news alert to the address: [email protected] Please make sure to provide this address in all your e-mail messages to us. Thanks! Copyright ? 2001 ZD Inc. ZDNet is a registered service mark of ZD Inc. ZDNet Logo is a service mark of ZD Inc. ###
1,483
allen-p/deleted_items/405.
P&L estimates , Good morning, In an effort to smooth out some of the problems we have seen in the past, I would like to start getting a P&L estimate from each of you nightly to try to prevent any unnecessary surprises in the mornings. I will then expect my group to contact you before they leave at night if it is above or below your estimates, or range you give them. This will certainly help us all avoid any fire drills the next day. If you have any concerns about this please let me know, otherwise, your book admins will be calling you or stopping by your desks around 3:00 daily to get this estimate. Thanks, Kam x3-5781
1,484
allen-p/deleted_items/406.
Your Approval is Overdue: Access Request for [email protected] , This request has been pending your approval for 30 days. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000067320&Page=Approval to review and act upon this request. Request ID : 000000000067320 Request Create Date : 10/11/01 10:24:53 AM Requested For : [email protected] Resource Name : Risk Acceptance Forms Local Admin Rights - Permanent Resource Type : Applications
1,485
allen-p/deleted_items/407.
Announcing Energy Profit Optimization Seminar Series , FOR IMMEDIATE RELEASE PROS Revenue Management Announces Energy Profit Optimization Web Seminar Series November 20, 2001-Houston- PROS Revenue Management, the world's leader in pricing and revenue optimization science and software, today announced a series of Energy Profit Optimization Web Seminars for the natural gas pipeline, storage, and trading industries in December. PROS cordially invites you to attend this series which is scheduled as a set of four seminars as follows: o December 5th: Pipeline Natural Gas Profit Optimization, 2:00 - 3:00pm Central Time o December 6th: Storage Profit Optimization for Storage Operators, 2:00 - 3:00 pm Central Time o December 6th: Storage Profit Optimization for Storage Traders, 3:30 - 4:30 pm Central Time o December 7th: Trading Profit Optimization, 2:00 - 3:00 pm Central Time Recently, a Wall Street analyst was quoted: "By 2001, companies that neglect to implement yield management techniques will become uncompetitive." PROS Revenue Management solutions have been credited with delivering 6-8% incremental revenue and 20-100% incremental profits. These Web seminars will allow industry leaders to learn from the experience PROS has gained in over 16 years of deploying these solutions. These seminars will cover the basics of increasing revenues and profits while providing insight on how real-time data can be used to forecast demand elasticity and optimize profits. Participants of previous PROS seminars have found these sessions to be extremely helpful in improving their business and making them more valuable to their respective organizations. The Web format will allow participants to attend from remote locations, ask questions in real-time, and interact with the presenter through an Internet browser and toll-free telephone number. This seminar is free of charge, spaces are limited for a first come first served basis. More information and registration can be found at: http://www.prosrm.com/events/energy_optimization_webcast_series.html, or send an email to [email protected]. Interested participants will be contacted to receive conference access information. About PROS PROS Revenue Management is the world's leader in pricing and revenue optimization solutions and the pioneer and dominant provider of revenue management to the airline and energy industry. PROS provides system solutions to the airline, energy, cargo, rail, healthcare, and broadcast industries, and has licensed over 235 systems to more than 95 clients in 39 countries. PROS' clients include 15 of the top 25 carriers in the airline industry. The PROS mission is to maximize the revenue of each client using PROS' world-leading revenue management science, systems solutions, and best practices business consulting. PROS' clients report annual incremental revenue increases of 6-8% as a result of revenue management. PROS' solutions forecast demand, optimize inventory, and provide dynamic pricing to maximize revenue. Founded in 1985 in Houston, PROS Revenue Management has a six-year compounded revenue growth of 40%, in large part due to the intellectual capital of its staff. Nearly half of PROS' professional staff has advanced degrees and the staff speaks a cumulative total of 26 languages. The company is profitable with Year 2000 revenue of $29 million. For more information on PROS Revenue Management, please visit www.prosRM.com or call 713-335-5151. Candy Haase 3100 Main Street, Suite 900 Houston, TX 77002 USA 713-335-5253 713-335-8144 fax [email protected] / www.prosRM.com
1,486
allen-p/deleted_items/408.
FW: Pre-Bid Meeting , -----Original Message----- From: Rangel, Ina Sent: Tuesday, November 20, 2001 9:07 AM To: Heu, Mog; Huang, Jason; South, Steven P.; Ermis, Frank; Reitmeyer, Jay; Scott, Susan M.; Gay, Randall L.; Tholt, Jane M.; Lenhart, Matthew; Grigsby, Mike; Kuykendall, Tori; Smith, Matt; Holst, Keith; Allen, Phillip K.; Sullivan, Patti Subject: Pre-Bid Meeting Today's Pre-Bid Meeting will be held in 05075 from 3:00 PM to 5:00 PM Patti: Please pass on to the schedulers.
1,487
allen-p/deleted_items/409.
Your confirmation, PHILLIP ALLEN , [IMAGE] Hi, PHILLIP! Within the last few weeks you received an introd= uction to your membership in The Opt in NetworkTM from Open2Win. We welcom= e you to The Opt in Network and promise to commit ourselves to delivering y= ou a highly rewarding online experience with offers that include discounts,= bargains, special offers, and sweepstakes, along with entertainment, trave= l and financial opportunities. Let us extend a warm welcome by offering yo= u one last opportunity to redeem your $5 Gift Certificate at MagazineReward= s.com. Cash in your gift certificate now . That?s only part of our new m= ember welcome gift: If you redeem your $5 gift certificate TODAY, we will s= et you up with FREE 3-day, 2-night accomodations in a luxurious top-brand = hotel or resort in one of over 32 U.S. destinations (and even the Bahamas!)= [IMAGE] There?s no strings attached. Click Here Now to cash in your ce= rtificate at MagazineRewards.com, and start planning for your indulgent min= i-vacation in a city near you. Click To redeem you $5 Gift Certificate W= ith its millions of subscribers, The Opt in Network has strong negotiating = power?that?s why only we can offer you exclusive deals like this. When you = receive mail from The Opt in Network, you know it?s worth opening. Again, = welcome to The Opt in Network! Warmest regards, The Opt in Network Subscr= iber Team If for some reason you choose not to participate in The Opt in N= etwork and get free and heavily discounted offers, please click here or = send an email with remove as the subject to [email protected]. Smart Dea= ls, Just a Click Away! =09 [IMAGE]++++++++++++++++++++++++++++++++++++++++++++++++++++++ This email= is not sent unsolicited. This is a Open2Win mailing! This message is sent= to subscribers ONLY. The e-mail address you subscribed with is: pallen@en= ron.com To unsubscribe please click here. or Send an mail with remove as t= he subject to [email protected] +++++++++++++++++++++++++++++++++++++++++= ++++++++++++++++ 08943A37-C26C-43AE-897A-13856DF90795 =09
1,488
allen-p/deleted_items/41.
Your Weekly Movie Showtimes from Amazon.com , Amazon.com: Weekly Movie Showtimes [IMAGE] [IMAGE]=09=09=09=09=09Showtimes starting Friday, December 21, 2001, near Z= IP code 77055 To receive showtimes for a ZIP code different from 77055 in = future e-mails, click here. =09[IMAGE]=09 [IMAGE]=09 =09[IMAGE]Now Playing: The Lord of the Rings: The Fellowship of= the Ring The Lord of the Rings: The Fellowship of the Ring PG-13Elijah W= ood, Ian McKellen The literary sensation of the 20th century becomes the= motion-picture event of the 21st century with The Lord of the Rings: Th= e Fellowship of the Ring, the first film in the long-awaited adaptation of= J.R.R. Tolkien's acclaimed trilogy. This groundbreaking epic of good vers= us evil, extraordinary heroes, wondrous creatures, and dark armies of terr= or introduces movie audiences to the enchanted world of Middle-earth and i= ts memorable inhabitants. Visionary filmmaker Peter Jackson directs an all= -star cast, including Ian McKellen, Elijah Wood, Cate Blanchett, Ian Holm,= Liv Tyler, Viggo Mortensen, and more. [IMAGE]Visit our Lord of the Ri= ngs Store for books, photos, toys, a trailer, and more Magazines Make Gre= at Gifts! [IMAGE]Visit our new Magazine Subscriptions storeto find everyd= ay low prices on entertainment magazinesfor the movie buff on your list. = =09 =09=09=09[IMAGE]=09 [IMAGE]=09 =09=09Showtimes for The Lord of the Rings: The Fellowship of th= e Ring Edwards Houston Marq*E 23 (Edwards Theatres) 7620 Kati Freeway, = Houston, TX 77024, 713-263-0808 Showtimes: 11:00am | 12:00pm | 1:30pm | 3= :00pm | 4:00pm | 5:30pm | 7:00pm | 8:00pm | 9:15pm | 10:45pm AMC Studio = 30 (American Multi-Cinema) 2949 Dunvale, Houston, TX 77063, 281-319-4262 S= howtimes: 11:15am | 11:55am | 12:30pm | 1:45pm | 3:00pm | 3:40pm | 4:15pm= | 5:30pm | 6:45pm | 7:25pm | 8:00pm | 9:15pm | 10:30pm | 11:10pm | 11:45p= m | 12:50am Edwards Greenway Palace 24 (Edwards Theatres) 3839 Westlaya= n, Houston, TX 77027, 713-871-8880 Showtimes: 11:00am | 12:00pm | 1:30pm |= 3:00pm | 4:00pm | 5:30pm | 7:00pm | 8:00pm | 9:15pm | 10:45pm | 12:00am = =09 Viewer Favorites Updated Weekly cover The Lord of the RingsHarry = Potter and the Sorcerer's StoneMonsters, Inc.Ocean's ElevenVanilla Sky = Go!Complete list Visit The Majestic [IMAGE]Sometimes your life comes= into focus one frame at a time. Jim Carrey stars in The Majestic, from t= he director of The Green Mile. =09 =09[IMAGE]=09 [IMAGE]=09=09=09=09=09 Films Opening This Week: How High RMethod Man, Re= dman [IMAGE]See Showtimes and more Jimmy Neutron: Boy Genius GDebi Derr= yberry, Rob Paulsen [IMAGE]See Showtimes and more Joe Somebody PGTim Al= len [IMAGE]See Showtimes and more The Lord of the Rings: The Fellowship= of the Ring PG-13Elijah Wood, Ian McKellen [IMAGE]See Showtimes and more= The Majestic PGJim Carrey, Martin Landau [IMAGE]See Showtimes and more= =09[IMAGE]=09 [IMAGE]=09=09=09=09=09 Now Playing in Theaters near ZIP Code 77055 Please = note: These showtimes start on Friday, December 21, 2001. To receive show= times for a ZIP Code different from 77055 in future e-mails, click here. = =09[IMAGE]=09 [IMAGE]=09=09=09=09=09 | Edwards Houston Marq*E 23| AMC Studio 30| Edward= s Greenway Palace 24| =09[IMAGE]=09 [IMAGE]=09=09=09=09=09 1. Edwards Houston Marq*E 23 (Edwards Theatr= es) 7620 Kati Freeway, Houston, TX 77024, 713-263-0808 Behind Enemy L= ines PG-13Owen Wilson, Gene Hackman Average Customer Review: 4 out of 5 s= tars Showtimes: 12:00pm | 2:15pm | 4:45pm | 7:15pm | 9:45pm Black Kn= ight PG-13Martin Lawrence, Marsha Thomason Average Customer Review: 3.5 o= ut of 5 stars Showtimes: 12:40pm | 3:10pm | 5:40pm | 8:10pm | 10:30pm = Harry Potter and the Sorcerer's Stone PGDaniel Radcliffe, Rupert Grint= Average Customer Review: 4.5 out of 5 stars Showtimes: 11:15am | 12:15p= m | 2:30pm | 3:45pm | 6:00pm | 7:15pm | 9:15pm | 10:15pm How High RMe= thod Man, Redman Average Customer Review: 5 out of 5 stars Showtimes: 11= :00am | 1:15pm | 3:30pm | 6:00pm | 8:15pm | 10:30pm Jimmy Neutron: B= oy Genius GDebi Derryberry, Rob Paulsen Showtimes: 11:05am | 11:40am | = 1:10pm | 2:10pm | 3:40pm | 4:40pm | 5:50pm | 7:10pm | 7:50pm | 9:15pm | 9= :50pm Joe Somebody PGTim Allen Average Customer Review: 1 out of 5 st= ars Showtimes: 11:45am | 2:15pm | 4:45pm | 7:15pm | 9:45pm The Lor= d of the Rings: The Fellowship of the Ring PG-13Elijah Wood, Ian McKellen = Average Customer Review: 4.5 out of 5 stars Showtimes: 11:00am | 12:00pm= | 1:30pm | 3:00pm | 4:00pm | 5:30pm | 7:00pm | 8:00pm | 9:15pm | 10:45pm = The Majestic PGJim Carrey, Martin Landau Average Customer Review: 2.5= out of 5 stars Showtimes: 12:45pm | 3:45pm | 7:05pm | 10:20pm Mons= ters, Inc. GJohn Goodman, Billy Crystal Average Customer Review: 4.5 out= of 5 stars Showtimes: 2:20pm | 4:50pm | 7:20pm | 9:35pm Not Another= Teen Movie RChyler Leigh, Jaime Pressly Average Customer Review: 3.5 out= of 5 stars Showtimes: 12:45pm | 1:30pm | 3:00pm | 3:45pm | 5:15pm | 6:0= 0pm | 7:30pm | 8:15pm | 9:45pm | 10:30pm Ocean's Eleven PG-13George = Clooney, Brad Pitt Average Customer Review: 3.5 out of 5 stars Showtimes:= 11:30am | 12:15pm | 1:05pm | 2:30pm | 3:15pm | 4:05pm | 5:30pm | 6:15pm = | 7:05pm | 8:30pm | 9:15pm | 10:05pm The Spy Game RRobert Redford, Br= ad Pitt Average Customer Review: 4 out of 5 stars Showtimes: 1:10pm | 4:= 10pm | 7:10pm | 9:55pm Vanilla Sky RTom Cruise, Pen?lope Cruz Aver= age Customer Review: 3 out of 5 stars Showtimes: 1:10pm | 1:40pm | 1:45pm= | 4:10pm | 4:40pm | 4:45pm | 7:10pm | 7:40pm | 7:45pm | 10:10pm | 10:30pm= | 10:40pm Return to Top 2. AMC Studio 30 (American Multi-Cin= ema) 2949 Dunvale, Houston, TX 77063, 281-319-4262 Amelie RAudrey Tau= tou, Mathieu Kassovitz Average Customer Review: 4.5 out of 5 stars Showti= mes: 2:05pm | 5:00pm | 7:45pm | 10:35pm Behind Enemy Lines PG-13Owen= Wilson, Gene Hackman Average Customer Review: 4 out of 5 stars Showtimes= : 12:25pm | 2:55pm | 5:20pm | 7:50pm | 10:15pm | 12:35am Black Knig= ht PG-13Martin Lawrence, Marsha Thomason Average Customer Review: 3.5 out= of 5 stars Showtimes: 12:50pm | 3:05pm | 5:25pm | 7:55pm | 10:10pm | 12= :25am Harry Potter and the Sorcerer's Stone PGDaniel Radcliffe, Rupert= Grint Average Customer Review: 4.5 out of 5 stars Showtimes: 12:00pm | = 1:30pm | 3:10pm | 4:45pm | 8:05pm | 11:20pm How High RMethod Man, R= edman Average Customer Review: 5 out of 5 stars Showtimes: 11:35am | 12:= 35pm | 1:50pm | 2:50pm | 4:05pm | 5:05pm | 6:20pm | 7:20pm | 8:30pm | 9:35= pm | 10:45pm | 11:50pm | 12:55am Jimmy Neutron: Boy Genius GDebi Derr= yberry, Rob Paulsen Showtimes: 11:15am | 12:15pm | 1:15pm | 2:20pm | 3:= 20pm | 4:25pm | 5:25pm | 6:30pm | 7:30pm | 8:35pm | 9:30pm | 10:40pm | 11:= 35pm | 12:45am Joe Somebody PGTim Allen Average Customer Review: 1 = out of 5 stars Showtimes: 11:20am | 12:20pm | 1:40pm | 2:40pm | 4:00pm |= 5:10pm | 6:15pm | 7:35pm | 8:35pm | 9:55pm | 10:55pm | 12:15am The Lo= rd of the Rings: The Fellowship of the Ring PG-13Elijah Wood, Ian McKellen= Average Customer Review: 4.5 out of 5 stars Showtimes: 11:15am | 11:55a= m | 12:30pm | 1:45pm | 3:00pm | 3:40pm | 4:15pm | 5:30pm | 6:45pm | 7:25pm= | 8:00pm | 9:15pm | 10:30pm | 11:10pm | 11:45pm | 12:50am The Majes= tic PGJim Carrey, Martin Landau Average Customer Review: 2.5 out of 5 sta= rs Showtimes: 12:35pm | 2:00pm | 3:50pm | 5:15pm | 7:05pm | 8:25pm | 10:= 15pm | 11:30pm Monsters, Inc. GJohn Goodman, Billy Crystal Average Cu= stomer Review: 4.5 out of 5 stars Showtimes: 11:15am | 12:05pm | 1:35pm |= 2:30pm | 3:45pm | 4:50pm | 6:00pm | 7:10pm | 8:15pm | 9:30pm | 11:40pm = Not Another Teen Movie RChyler Leigh, Jaime Pressly Average Customer= Review: 3.5 out of 5 stars Showtimes: 11:50am | 12:40pm | 12:45pm | 1:2= 0pm | 2:10pm | 2:50pm | 3:30pm | 4:20pm | 5:05pm | 5:45pm | 6:30pm | 7:15p= m | 7:55pm | 8:40pm | 9:25pm | 10:10pm | 10:50pm | 11:35pm | 12:10am Oc= ean's Eleven PG-13George Clooney, Brad Pitt Average Customer Review: 3.5= out of 5 stars Showtimes: 11:30am | 12:10pm | 12:50pm | 12:55pm | 1:35p= m | 2:15pm | 2:55pm | 3:35pm | 4:20pm | 5:00pm | 5:40pm | 6:20pm | 7:00pm = | 7:40pm | 8:20pm | 9:00pm | 9:40pm | 10:20pm | 11:00pm | 11:40pm | 12:20a= m Shallow Hal PG-13Gwyneth Paltrow, Jack Black Average Customer Rev= iew: 3 out of 5 stars Showtimes: 6:40pm The Spy Game RRobert Redford= , Brad Pitt Average Customer Review: 4 out of 5 stars Showtimes: 12:00pm= | 2:45pm | 5:35pm | 11:45pm Thir13en Ghosts RTony Shalhoub, Shanno= n Elizabeth Average Customer Review: 3 out of 5 stars Showtimes: 10:30am= | 12:40pm Vanilla Sky RTom Cruise, Pen?lope Cruz Average Customer Re= view: 3 out of 5 stars Showtimes: 11:20am | 12:25pm | 12:55pm | 1:10pm |= 2:15pm | 3:20pm | 4:10pm | 5:15pm | 6:15pm | 7:10pm | 8:10pm | 9:10pm | 1= 0:05pm | 11:05pm | 12:05am Return to Top 3. Edwards Greenway Pal= ace 24 (Edwards Theatres) 3839 Westlayan, Houston, TX 77027, 713-871-8880 = Behind Enemy Lines PG-13Owen Wilson, Gene Hackman Average Customer R= eview: 4 out of 5 stars Showtimes: 11:00am | 12:15pm | 1:30pm | 3:15pm |= 4:00pm | 5:45pm | 6:30pm | 8:15pm | 9:00pm | 10:30pm Harry Potter and = the Sorcerer's Stone PGDaniel Radcliffe, Rupert Grint Average Customer Re= view: 4.5 out of 5 stars Showtimes: 12:10pm | 1:05pm | 3:30pm | 4:35pm |= 7:10pm | 8:05pm | 10:10pm How High RMethod Man, Redman Average Cus= tomer Review: 5 out of 5 stars Showtimes: 11:00am | 1:15pm | 3:30pm | 6:= 00pm | 8:15pm | 10:30pm Jimmy Neutron: Boy Genius GDebi Derryberry, Ro= b Paulsen Showtimes: 11:05am | 11:40am | 1:10pm | 2:10pm | 3:40pm | 4:4= 0pm | 5:50pm | 7:10pm | 7:50pm | 9:15pm | 9:50pm Joe Somebody PGTim= Allen Average Customer Review: 1 out of 5 stars Showtimes: 11:45am | 2:= 15pm | 4:45pm | 7:15pm | 9:45pm The Lord of the Rings: The Fellowship = of the Ring PG-13Elijah Wood, Ian McKellen Average Customer Review: 4.5 o= ut of 5 stars Showtimes: 11:00am | 12:00pm | 1:30pm | 3:00pm | 4:00pm | = 5:30pm | 7:00pm | 8:00pm | 9:15pm | 10:45pm | 12:00am The Majestic = PGJim Carrey, Martin Landau Average Customer Review: 2.5 out of 5 stars S= howtimes: 12:30pm | 1:00pm | 3:45pm | 4:30pm | 7:05pm | 8:15pm | 10:20pm = Monsters, Inc. GJohn Goodman, Billy Crystal Average Customer Review: = 4.5 out of 5 stars Showtimes: 12:15pm | 2:45pm | 5:15pm | 7:45pm | 10:00= pm Not Another Teen Movie RChyler Leigh, Jaime Pressly Average Cust= omer Review: 3.5 out of 5 stars Showtimes: 11:15am | 12:45pm | 1:30pm | = 3:00pm | 3:45pm | 5:15pm | 6:00pm | 7:30pm | 8:15pm | 9:45pm | 10:30pm = Ocean's Eleven PG-13George Clooney, Brad Pitt Average Customer Review: 3= .5 out of 5 stars Showtimes: 11:05am | 11:30am | 12:05pm | 1:05pm | 2:05= pm | 2:30pm | 3:05pm | 4:05pm | 5:05pm | 5:30pm | 6:05pm | 7:05pm | 8:05pm= | 8:30pm | 9:05pm | 10:05pm | 10:30pm The Spy Game RRobert Redford,= Brad Pitt Average Customer Review: 4 out of 5 stars Showtimes: 12:15pm = | 3:15pm | 6:15pm | 9:15pm Vanilla Sky RTom Cruise, Pen?lope Cruz Av= erage Customer Review: 3 out of 5 stars Showtimes: 11:00am | 12:00pm | 1:= 00pm | 1:45pm | 3:00pm | 4:00pm | 4:45pm | 6:00pm | 7:00pm | 7:45pm | 9:00= pm | 10:00pm | 10:30pm =09[IMAGE]=09 [IMAGE]=09=09=09=09=09Return to Top We hope you enjoyed receiving this = newsletter. However, if you'd like to unsubscribe, please use the link belo= w or click the Your Account button in the top right corner of any page on = the Amazon.com Web site. Under the E-mail and Subscriptions heading, click= the "Manage your Weekly Movie Showtimes e-mail" link. http://www.amazon= .com/movies-emailCopyright 2001 Amazon.com, Inc. All rights reserved. You= may also change your communication preferences by clicking the following l= ink: http://www.amazon.com/communications =09[IMAGE]=09 =09=09=09=09=09=09 =09
1,489
allen-p/deleted_items/410.
DEC physical , We will hold off transferring any physical positions desk to desk until the end of bidweek. After NX1, we will transfer positions at a daily EOL Index mid price. Please monitor my book and others to make certain DEC deals are not being transferred prior to NX1 at an IF monthly or GD daily mid price. Thanks, Mike
1,490
allen-p/deleted_items/411.
TRV Notification: (West VaR - 11/26/2001) , The report named: West VaR <http://trv.corp.enron.com/linkFromExcel.asp?report_cd=36&report_name=West+VaR&category_cd=2&category_name=WEST&toc_hide=1&sTV1=2&TV1Exp=Y&current_efct_date=11/26/2001>, published as of 11/26/2001 is now available for viewing on the website.
1,491
allen-p/deleted_items/412.
SBC "The Way" Weekly Info Request , If you have any information you wish to be distributed to the class this week, please get it to me before this upcoming Wednesday morning. Short text-bullet items are fine. I haven't been getting much information over the last 5-6 weeks, and I'm running out of class calendar entries.... You are receiving this because I have either you or your spouse listed as a member of the leadership team for "The Way" Sunday school class at Second Baptist Church. If you don't want to get weekly reminders, or have a spouse email available, please let me know . Regards, -- Richard G. Hash [email protected] OpenSpirit Corp. ph: 281-940-0207 fax 281-940-0201 Suite 700, 1155 Dairy Ashford, Houston, TX 77079
undisclosed-recipients:;@ENRON <??Sundisclosed-recipients:;@ENRON>
1,492
allen-p/deleted_items/413.
Request Submitted: Access Request for [email protected] , You have received this email because you are listed as a security approver. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000077131&Page=Approval to review and act upon this request. Request ID : 000000000077131 Request Create Date : 11/26/01 8:13:58 AM Requested For : [email protected] Resource Name : ICE - External Intercontinental Exchange US Natural Gas Resource Type : Applications
1,493
allen-p/deleted_items/414.
Request Submitted: Access Request for [email protected] , You have received this email because you are listed as a security approver. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000077129&Page=Approval to review and act upon this request. Request ID : 000000000077129 Request Create Date : 11/26/01 8:12:45 AM Requested For : [email protected] Resource Name : ICE - External Intercontinental Exchange US Natural Gas Resource Type : Applications
1,494
allen-p/deleted_items/415.
Update to Merger Q&A , We've updated the Merger Q&A document on our Enron Updates site ( <http://home.enron.com/updates/mergerQA.html>), as a result of the many questions you've had concerning the merger between Enron and Dynegy. Questions addressed include those about Enron stock options, benefits and immigration status. Please stay tuned for additional updates.
1,495
allen-p/deleted_items/416.
Re: greetings , give me your phone number if you do not mind. Thanks, ----- Original Message ----- From: <[email protected]> To: <[email protected]> Sent: Monday, November 26, 2001 7:44 AM Subject: RE: greetings > Al, > > Sorry to hear the news. Give me a call anytime today. > > Phillip > > -----Original Message----- > From: "pollard" <[email protected]>@ENRON > Sent: Tuesday, November 20, 2001 4:24 PM > To: [email protected] > Subject: greetings > > > Phillip, > > NPW laid off 20% of its workforce about 2 weeks ago, and I was > unfortunately one of them. I can not believe what is going on at > Enron. Hope you are doing all right. Give me a call or drop me an > email when you have a chance at 936-321-6307 or let me know when is a > good time to call you. > > Al Pollard > > > > > > ********************************************************************** > This e-mail is the property of Enron Corp. and/or its relevant affiliate and may contain confidential and privileged material for the sole use of the intended recipient (s). Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender or reply to Enron Corp. at [email protected] and delete all copies of the message. This e-mail (and any attachments hereto) are not intended to be an offer (or an acceptance) and do not create or evidence a binding and enforceable contract between Enron Corp. (or any of its affiliates) and the intended recipient or any other party, and may not be relied on by anyone as the basis of a contract by estoppel or otherwise. Thank you. > **********************************************************************
1,496
allen-p/deleted_items/417.
greetings , Phillip, NPW laid off 20% of its workforce about 2 weeks ago, and I was unfortunately one of them. I can not believe what is going on at Enron. Hope you are doing all right. Give me a call or drop me an email when you have a chance at 936-321-6307 or let me know when is a good time to call you. Al Pollard
1,497
allen-p/deleted_items/418.
Undeliverable: Delivery Status Notification (Failure) , --------- Inline attachment follows --------- From: </O=ENRON/OU=NA/CN=RECIPIENTS/CN=PALLEN> To: '[email protected]' <[email protected],> Date: Monday, November 26, 2001 7:10:01 GMT Subject: Mike & Tony, Rather than fill in the design selections, I have attached a spreadsheet that estimates the costs. Since I have spent so much time researching the house, I think my numbers are pretty close. I would be interested in working with a contractor on a cost plus fixed fee basis. I don't know if this would be agreeable to you. Take a look at the numbers and let me know what you think. If we could work together on this basis, I will complete the design selections. I will make the adjustments necessary to stay within the allowances as we get actual quotes from sub-contractors. We are torn between two good locations. However, we are leaning towards Kerrville. The lot in Kerrville is substantially more expensive than our lot in San Marcos, so we are really stretched to make this house work financially. We have decided that if we can make Kerrville work within our budget we will go ahead, if not we will fall back to our plan to move to San Marcos. I don't know how many jobs you have going currently, but if we could reach an agreement we would like to start immediately. Phillip Allen 713-463-8626 [email protected]
1,498
allen-p/deleted_items/419.
, Phillip, I hope you had a great Thanksgiving holiday. I just wanted to drop you a note to see if you wanted me to look for anything else for you. We placed the $1mm in the munis. Let me know if you need anything else. Sincerely, Steve ****************************************************** Notice Regarding Entry of Orders and Instructions: Please do not transmit orders and/or instructions regarding your UBSPaineWebber account(s) by e-mail. Orders and/or instructions transmitted by e-mail will not be accepted by UBSPaineWebber and UBSPaineWebber will not be responsible for carrying out such orders and/or instructions. Notice Regarding Privacy and Confidentiality: UBSPaineWebber reserves the right to monitor and review the content of all e-mail communications sent and/or received by its employees.
1,499
allen-p/deleted_items/420.
RE: Answer , Pam, Can you help with below? David -----Original Message----- From: Allen, Phillip K. Sent: Monday, November 26, 2001 11:18 AM To: Oxley, David Subject: RE: Answer David, For clarity, wherever you cite Section 6.2 in your response I assume you mean Section 6.3. Your response does not address the key points upon which I based my interpretation of the plan. The beginning of Section 6.3 states "Notwithstanding any other provision of the plan?". This implies that Section 6.3 contains the complete rules for an accelerated distribution. I disagree with your translation of "a single sum distribution" as meaning all at once instead of a single amount. I would like to meet to discuss or appeal to Greg W. or John L. In addition, your response does not address Section 7.1. This appears to be the relevant section if the PSA is to be paid in shares. Additionally the Q & A section in the plan brochure (pg. 8) works through an example of adjusting the number of shares to retain a certain dollar value. This is the methodology described in Section 7.1. Tom Martin and Scott Neal share the above concerns. Please advise of a convenient time we can all meet to discuss further. Phillip -----Original Message----- From: Oxley, David Sent: Monday, November 26, 2001 8:31 AM To: Allen, Phillip K. Cc: Whalley, Greg; Joyce, Mary Subject: Answer For purposes of an accelerated distribution from the PSA, a "single sum distribution," in Section 6.2 means that a PSA account is distributed all at once, as distinguished from another form of payout as may have been selected by a participant in his or her deferral agreement. Section 6.2 is clear in that the account balance shall be determined as of the last day of the month preceding the date on which the Committee receives the written request of the Participant. A PSA account balance is reflected in shares of stock since the form of distribution is shares of stock. Additionally, any portion of a PSA balance attributable to deferral of restricted stock is administered under Sections 3.5 and 3.6 and Exhibit A of the Plan. This section is applicable now as we are accelerating the distribution of PSA balances created with deferrals of restricted stock. The Plan indicates that upon death, disability, retirement or termination, the share units are converted to shares which are issued to the executive according to the payment election made by the executive at the time of the deferral election. Therefore the distribution you will receive in shares is correct and we do not agree with your interpretation of the plan.
1,500
allen-p/deleted_items/421.
Market Insight: We See Upswing Continuing , [IMAGE] Market Insight for November 26, 2001 From [IMAGE] The Gl= obal Online Financial Services Firm Introducing Goldman Sachs PrimeAcces= ssm Research As a TD Waterhouse customer, you now have online access to G= oldman Sachs PrimeAccesssm Research. Just login at tdwaterhouse.com , cli= ck on 'News & Research', and then on 'Goldman Sachs'. We See Upswing Con= tinuing By Arnie Kaufman, Editor, The Outlook Selective accumulation r= emains in order. The early stages of recoveries from bear markets vary wi= dely in degree. As time passes, however, deviations from the norm become f= ar less dramatic. Through last Wednesday, when we went to press early b= ecause of the holiday, 31% of the bear market loss from March 27, 2000 to = September 21, 2001 had been recaptured. That's about average for rebounds = in the postwar period. As shown in the table at the bottom right of this = week's edition of The Outlook, at the two-month point in the recoveries fr= om the nine former bear markets since World War II, the S&P 500 had won ba= ck an average of 33% of the bear market loss. In each of the nine insta= nces, the gain at the end of six months was greater than that after two mo= nths and the gain at the end of 12 months was greater than that after six = months. On average, nearly two-thirds of the bear market loss was recovere= d after six months and almost all of the bear market loss was recouped in= a year. Economic and corporate news will remain bad for a while, but tha= t's typically the case in the early part of a bull market that is associat= ed with an economic recession. Stock prices start recovering well before = the headlines improve. The September upturn in stocks would be consistent = with the start of an economic expansion in the first quarter of next year.= While P/E ratios currently are high, that won't necessarily keep the b= ull market from progressing. The preceding economic expansion was the long= est in history and gave rise to "new era" optimism. Corporations, especial= ly in information technology, built production and sales capacity to level= s far greater than proved justified. Those excesses are now being correcte= d, painfully. Corporate earnings are in a severe contraction. Once the eco= nomy begins to grow again, however, profits will rebound and P/Es will st= art looking much more reasonable. Low inflation, low interest rates, rapid= technological innovation and above-average productivity growth should hel= p support elevated stock valuations. As a TD Waterhouse customer, you ca= n view a complete copy of S&P's The Outlook (a $298 value) for FREE. Just = select 'News & Research' when you login to yourTD Waterhouse account . Th= e Outlook is available under 'Other Reports.' Why You Should Consider = a Margin Account When you add margin borrowing features to your account, = you've got a lot of possibilities. While margin involves risk, it also can= provide greater investing flexibility, a source of low-cost borrowing and= a form of "overdraft protection." Click here to learn more . Add Margin= Privileges to your Account . Your feedback is important to us! Emai= l us with any questions or comments at [email protected] TD= Waterhouse Investor Services, Inc. Member NYSE/SIPC. Access to services= and your account may be affected by market conditions, system performance= or for other reasons. Under no circumstances should the information herei= n be construed as a recommendation, offer to sell or solicitation of an of= fer to buy a particular security. The article and opinions herein are obta= ined from unaffiliated third parties and are provided for informational pu= rposes only. While the information is deemed reliable, TD Waterhouse canno= t guarantee its accuracy, completeness or suitability for any purpose and = makes no warranties with regard to the results to be obtained from its use= . To unsubscribe from this email, login to your account and select "My= Account' then 'My Info'. Or email us at [email protected] =09
1,501
allen-p/deleted_items/422.
Additional properties in San Antonio , Phillip, I am waiting to get info. on two more properties in San Antonio. The broker will be faxing info. on Monday. One is 74 units for $1,900,000, and the other is 24 units for $550,000. Also, I have mailed you info. on three other properties in addition to the 100 unit property that I faxed this AM. Let me know if you have any questions. Jeff Smith The Smith Company 9400 Circle Drive Austin, TX 78736 512-394-0908 office 512-394-0913 fax 512-751-9728 mobile [email protected]
1,502
allen-p/deleted_items/425.
Termination Notice , To Accenture: As discussed early today we hereby notify Accenture of 10 days notice of intent to terminate our Arrangement Letter for development of Basics of Risk Management. The 10 days count down begins as of this evening. During these 10 days Accenture and Enron will review its position and attempt to find a solution for this project to go forward.
1,505
allen-p/deleted_items/426.
RE: Summary of Today's Meeting , Phillip, I talked with Ina and scheduled a meeting for Wednesday at 10 am. I am booked from 1 to 4:30 tomorrow, but other than that I'm free the rest of the week (until Friday). Mery [email protected] om To: Mery L. Brown/Internal/Accenture@Accenture cc: 11/26/2001 03:07 PM Subject: RE: Summary of Today's Meeting Mery, Are we scheduled to meet tomorrow at 10 AM? If yes can we change to 2 PM? Phillip -----Original Message----- From: [email protected]@ENRON Sent: Friday, November 16, 2001 12:22 PM To: [email protected] Cc: [email protected]; [email protected]; Frolov, Yevgeny Subject: Summary of Today's Meeting Phillip, Thank you for meeting with us today. I want to take a few minutes to summarize the decisions that came out of our meeting. 1. Feedback Approach: We will incorporate the ideas and suggestions you gave us and move forward with this approach. 2. SME Review of Knowledge System Topics: When the time comes for Topics reviews, we will send you the name of the SME who is responsible for sign-off on each topic. 3. Conversion and Arbitrage Problems: We will brainstorm ways to incorporate more problems without going over our 4-6 hour target. We will meet with you next Tuesday at 10:00 to review the problems as we've designed them so far and arrive at a solution. (I will send an e-mail Monday with the room number.) Have a good weekend. Mery This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited. ********************************************************************** This e-mail is the property of Enron Corp. and/or its relevant affiliate and may contain confidential and privileged material for the sole use of the intended recipient (s). Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender or reply to Enron Corp. at [email protected] and delete all copies of the message. This e-mail (and any attachments hereto) are not intended to be an offer (or an acceptance) and do not create or evidence a binding and enforceable contract between Enron Corp. (or any of its affiliates) and the intended recipient or any other party, and may not be relied on by anyone as the basis of a contract by estoppel or otherwise. Thank you. ********************************************************************** This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited.
1,506
allen-p/deleted_items/428.
Re: Swaps Topics - Kirk's Comments , Team My comments are below. We need information on Monthly cash Settlements - Basis swaps Constructing a basis swap Constructing a swing swap Constrructing a cross commodity swap Montly cash settlement -cross commodity swap need example of a crack spread swap
[email protected], Lewis, Andrew H. </O=ENRON/OU=NA/CN=RECIPIENTS/CN=ALEWIS>
1,508
allen-p/deleted_items/429.
Re: Forwards Topics - Kirk Comments , Team Here are my Comments:
[email protected], Lewis, Andrew H. </O=ENRON/OU=NA/CN=RECIPIENTS/CN=ALEWIS>
1,509
allen-p/deleted_items/43.
ANCHORDESK: My 2001 favorites: Products I couldn't do without , _____________________DAVID COURSEY_____________________ MY 2001 FAVORITES: PRODUCTS I COULDN'T DO WITHOUT One of the perks of my job is getting to play with lots of neat new gizmos. During the past year, I tried out dozens of different devices. But when it comes right down to it, there's only a handful that really made a difference for me. Here's what they are, how they work, and why I like them so much. http://cgi.zdnet.com/slink?/adeskb/adt1221/2834332:8593142 PLUS: ANCHORDESK RADIO: HOW HANDHELDS IMPROVED IN 2001 http://cgi.zdnet.com/slink?/adeskb/adt1221/2834283:8593142 # _____________________NEWS ANALYSIS_____________________ Sylvia Carr WELCOME AT&T COMCAST... XP HOLE PLUGGED... CRACKERS UNDER FIRE... Say hello to the new cable king: AT&T Comcast. That's right. Comcast beat out AOL Time Warner and Cox in the contest for AT&T Broadband's hand in marriage. The cable giant is out to dominate not only the cable-modem and TV worlds, but also the local telephone service realm. Watch out, Baby Bells! http://cgi.zdnet.com/slink?/adeskb/adt1221/2834335:8593142 _____________________EXPERT ADVICE_____________________ C.C. Holland HAVE A STRESS-FREE HOLIDAY WITH HELP FROM THE WEB! Are you panicking as your to-do list gets longer by the minute? Never fear, you can salvage your holiday cheer! C.C. shows you five useful sites that can help you make the most of the season. They'll give you songs to sing and stories to read, and even show you how to send last-minute holiday cards. http://cgi.zdnet.com/slink?/adeskb/adt1221/2833310:8593142 > > > > > John Morris and Josh Taylor WHY IT'S A GREAT TIME TO BE A MAC AND MUSIC LOVER First, Apple gave us the iPod, perhaps the best MP3 player ever. Now comes a new version of its iTunes digital jukebox software, which really takes the cake. Josh and John tell you why these Apple products--and a slew of other gizmos to pass through ZDNet Labs this week--scored so well with our editors. http://cgi.zdnet.com/slink?/adeskb/adt1221/2834197:8593142 > > > > > Preston Gralla HOW TO MASTER WINDOWS (AT LEAST WHERE YOU CAN) You can't fix all of Windows' idiosyncrasies, but you can at least control how it behaves when it starts up and shuts down. Preston recommends three downloads that let you choose which programs load when you boot up, as well as set tasks--such as ejecting a CD--for each time you power down. http://cgi.zdnet.com/slink?/adeskb/adt1221/2833833:8593142 > > > > > _____________________CRUCIAL CLICKS_____________________ Make sure you see these features on ZDNet today! DON'T MISS ZDNET'S LAST-MINUTE HOLIDAY SHOPPING GUIDE http://chkpt.zdnet.com/chkpt/adeskclicks/http://zdnetshopper.cnet.com/shopping/0-7413293-7-8143480.html CHECK OUT CASIO'S $1000-PER-POUND LAPTOP http://www.zdnet.com/supercenter/stories/overview/0,12069,525558,00.html WHY YOU SHOULDN'T UNDERESTIMATE 3G WIRELESS http://www.zdnet.com/techupdate/stories/main/0,14179,2832410,00.html ******************ELSEWHERE ON ZDNET!****************** Thrill your favorite techie with perfect presents at ZDNet Shopper. http://cgi.zdnet.com/slink?166139 Ten tips to help you attain CRM ROI. http://cgi.zdnet.com/slink?166140 Get the lowdown on all the different wireless LAN standards. http://cgi.zdnet.com/slink?166141 Editors' Top 5: Check out the best gifts money can buy. http://cgi.zdnet.com/slink?166142 Find out about standardizing C# in Tech Update's special report. http://cgi.zdnet.com/slink?166143 *********************************************************** AnchorDesk comes to you free of charge as a service of ZDNet. On its companion Web site, AnchorDesk includes full details on the stories you see above, plus late-breaking news, links to in-depth information, and much more. Visit: http://www.anchordesk.com/ To subscribe, unsubscribe, or make changes to your subscription, please go to: http://cgi.zdnet.com/slink?130228 We are sending this news alert to the address: [email protected] Please make sure to provide this address in all your e-mail messages to us. Thanks! Copyright ? 2001 ZD Inc. ZDNet is a registered service mark of ZD Inc. ZDNet Logo is a service mark of ZD Inc. ###
1,510
allen-p/deleted_items/430.
Re: Futures and Options Topics - Dutch Quigley , Team Here are my comments on Options (See attachment below). We need examples of: Cap (Call Option) Floor Collar In addition we need information on Financial option. Accenture, in all the documents can we have roll over capabilities on the bold words and instead of Click here because time is of essence in our culture and having the learner have to go to the glossary or click for a pop up creates opportunities for disengagement.
[email protected], Quigley, Dutch </O=ENRON/OU=NA/CN=RECIPIENTS/CN=DQUIGLE>
1,511
allen-p/deleted_items/431.
Re: Futures and Options Topics - Dutch Quigley , Team Here are my comments on Futures. Very minor comments
[email protected], Quigley, Dutch </O=ENRON/OU=NA/CN=RECIPIENTS/CN=DQUIGLE>
1,512
allen-p/deleted_items/432.
Re: Organizational Structure Topic - Berney Aucoin , Team Here are my comments on the subject Topic.
[email protected], Aucoin, Berney C. </O=ENRON/OU=NA/CN=RECIPIENTS/CN=BAUCOIN>
1,513
allen-p/deleted_items/433.
Re: Risk Identification Topic - Kirk comments , Team
[email protected], McMichael Jr., Ed </O=ENRON/OU=NA/CN=RECIPIENTS/CN=EMCMICH>
1,514
allen-p/deleted_items/434.
RE: Organizational Structure Topic - Berney Aucoin , Kirk I've added my comments.(See attached) Given Enron's current situation, can you give a status on this overall project? Thx Berney Aucoin -----Original Message----- From: McDaniel, Kirk Sent: Saturday, November 24, 2001 10:33 AM To: [email protected]; Aucoin, Berney C. Cc: O'rourke, Tim; Frolov, Yevgeny; [email protected]; [email protected]; Allen, Phillip K. Subject: Re: Organizational Structure Topic - Berney Aucoin Team Here are my comments on the subject Topic. << File: Org Structure Topic_V1.doc Kirk Comment.doc >>
1,515
allen-p/deleted_items/435.
Zero Option , Phillip, It will go along this lines: (Conservative) ***************************************************** We pay "0" going forward We have already played 300K in 3Q2001 Outstanding bill for $27,740 will hit Enron Q1, 2002 Enron and surviving entity will have the right to use it internally We value Enrons SME time @ around 300K Accenture will have the right to use it internally and modify the product at its will for internal & external use. This arrangement will void 900K Enrons Revenue from Accenture Enron would receive 0% royalty on all external sales. I was thinking to stay away from royalty as we do not know what will be new company position on this matter. Also, I do not think Accenture will want to enter into partnership structure with a ghost company unless we get Dinergy involved. *********************************************************************** If we do not reach the agreement: 1. Terminate and pay around 500-600k (estimate) The payment could be deferred in to 2Q 2002 or 2. Continue "as is" with payment differed for 90 days or merger. We are sending Accenture official notice as of tomorrow we have 10 business days to workout solution or terminate. Any comments or suggestions? Regards, Yevgeny -----Original Message----- From: Allen, Phillip K. Sent: Tuesday, November 20, 2001 12:32 PM To: Frolov, Yevgeny Subject: RE: BRM Case & Options Yevgeny, Please send me an email describing the zero option so I can pass it along to the other SME's. Phillip -----Original Message----- From: Frolov, Yevgeny Sent: Monday, November 19, 2001 10:26 AM To: Allen, Phillip K. Cc: McDaniel, Kirk; Coleman, Brad; O'rourke, Tim Subject: BRM Case & Options Importance: High Phillip, I am following up to our BRM conversation from Friday. Obviously it is a valid questions to ask and as you requested I am attaching two documents: one summarizing the options and 2nd cash flow impact. In the cash flow impact Case 2 & 3 already account for additional cut of 100k from existing cost. (it comes from Expenses such as projected traveling 30K+Cut in Media 20K + Cut in sim exercises 50K) The cut in sim exercises need to be confirmed with you. A total of two sims could be cut one. Accenture will address this question tomorrow during the meeting. Also, I will ask them to cut the meeting by 10 min, thus we can go over the documents and can answer your questions. I am not sure what is Tim's schedule for tomorrow, but at least Kirk and myself will be around. Obviously cutting sims is not the best options but we are considering all alternatives at this time. We will continue to review how to cut labor and expenses. One question that it would be good if you think about it before we meet is as follow. Is BRM "core" to the Enron for next few months or new organization? Please consider the costs of finishing this project. Sincerely, Yevgeny Frolov 713-345-8250 w << File: BRM Cash Flow Cases.xls >> << File: BRM Contingency Numbers Rev3.xls >>
1,516
allen-p/deleted_items/436.
Summary of Today's Meeting , Phillip, Here are the key points that came out of today's meeting: 1. We will move Conversion and Arbitrage from the Simulation layer into the Knowledge System layer. We will incorporate 5-10 problems of each type. 2. You will provide us with the name(s) of people who can give us content for these problems. We will set up two rounds of meetings; one early next week to gather content and a second meeting for review. 3. We will change "Gas Daily Risk" to "Intra-Month Risk" throughout the simulation. Can you provide us with a definition of Intra-Month risk? 4. Just to clarify: For conversion, we were planning to cover problems where there is no perfect hedge so the learner has to find creative ways to hedge, as opposed to conversion of mmBTU to decatherms, conversion of oil volumes to natural gas volumes, etc. Is that what you had in mind too? Thank you in advance for your help. Have a great Thanksgiving. Mery This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited.
1,517
allen-p/deleted_items/437.
PHILLIP, Get FREE software from Sega, IBM, Disney & may more... , PHILLIP, Free Software now available to you from Sega, IBM, Disney, Simon & Schuster, Crayola and many others! You have been selected to receive unlimited free software programs from the biggest publishers in the world. Click below to receive your free software programs today! Click here: http://www.freesoftwarepromotions.com/100012 <a href="http://www.freesoftwarepromotions.com/100012">AOL Members Click Here</a> All titles are full-version, CD-ROMs (not shareware or demos) that are currently sold in retail outlets for as much as $50 each. Act today while supplies last! So hurry up and take advantage of this (almost) too-good-to-be-true offer by clicking on the link below! Yes, I want free software! Click here: http://www.freesoftwarepromotions.com/100012 <a href="http://www.freesoftwarepromotions.com/100012">AOL Members Click Here</a> Brought to you by FreeSoftwarePromotions in conjunction with Sega TM, IBM TM, Simon & Schuster TM and Crayola TM. ______________________________________________________________________ Below are just a few of the 1,000's of titles that are ALL FREE! Visit our website to see more. American Heritage -History of the US Bodyworks 6.0 Chessmaster 5500 Compton's Complete - Interactive Cookbook Crayola Magic 3D Coloring Deer Avenger! Environmentally Safe Home Food Lover's Encyclopedia Future Cop - LAPD House Beautiful 3D - Interior Designer Inside the SAT & ACT Logic Quest Math Invaders Money Town Nuclear Strike Pink Panther Pizza Pilots Planetary Taxi Reader Rabbit Resumes That Work Road Rash Spellbound SEGA Rally Championship Simon & Schuster's New Millennium Encyclopedia Smithsonian: Total Amazon Think & Talk French Tom Clancy's SSN - Virtua Fighter Virtua Squad Virtual On Cybertrooper Webster's New World Dictionary & Thesaurus Weight Watcher's Light & Tasty Deluxe World Book Worldwide Soccer Click here: http://www.freesoftwarepromotions.com/100012 <a href="http://www.freesoftwarepromotions.com/100012">AOL Members Click Here</a> _________________________________________________________________________ PHILLIP, This email message may be a recurring mailing. If you would like to be removed from the United Marketing Strategies email announcement list, click on the link below (You may need to copy and paste the link into your browser)click below: http://mail01.unitedmarketingstrategies.com/remove/unsubscribe.html <a href="http://mail01.unitedmarketingstrategies.com/remove/unsubscribe.html">Remove</a> __________________________________________________________________________
1,518
allen-p/deleted_items/438.
TRV Notification: (West VaR - 11/27/2001) , The report named: West VaR <http://trv.corp.enron.com/linkFromExcel.asp?report_cd=36&report_name=West+VaR&category_cd=2&category_name=WEST&toc_hide=1&sTV1=2&TV1Exp=Y&current_efct_date=11/27/2001>, published as of 11/27/2001 is now available for viewing on the website.
1,519
allen-p/deleted_items/439.
ANCHORDESK: Pressplay, MusicNet: Legal, but not for MP3 players , _____________________DAVID COURSEY_____________________ PRESSPLAY, MUSICNET: LEGAL, BUT NOT FOR MP3 PLAYERS This is so idiotic that I can't believe I'm writing a column about it, but here goes: You know those "legal" Napster sites the music industry is creating? Well, throw away your MP3 player, because it won't work with them. Are these people nuts? http://cgi.zdnet.com/slink?/adeskb/adt1126/2827177:8593142 # _____________________NEWS ANALYSIS_____________________ Sylvia Carr HOLIDAY WORM STRIKES... PCS W/DVD: HOT!... INTEL REVS UP... Think you've got the post-Thanksgiving blues? Try snacking on a worm to go with your leftovers. This weekend a computer worm caught holiday-sated folks off guard while they contemplated stuffing instead of security. http://cgi.zdnet.com/slink?/adeskb/adt1126/2827208:8593142 _____________________EXPERT ADVICE_____________________ John Morris and Josh Taylor WHAT TURNS US ON--AND OFF--ABOUT SATELLITE RADIO Looking for radio programming from coast to coast? Check out satellite radio. Josh and John tested the service on a recent cross-country trip. Here's what they loved and hated. http://cgi.zdnet.com/slink?/adeskb/adt1126/2827174:8593142 > > > > > Stephan Somogyi WHY THE NEW POWERBOOK G4 IS A MAJOR FASHION VICTIM While Stephan's not a huge fan of the Titanium PowerBook G4, he thought he should give the newest model a try. What did he find? It sure looks nice, but it still isn't the greatest pro laptop out there. http://cgi.zdnet.com/slink?/adeskb/adt1126/2827149:8593142 > > > > > Preston Gralla STAY ON TOP OF IT! 3 FREE TOOLS THAT ORGANIZE YOUR BUSY LIFE Don't let the holiday season rush get to you. Preston shows you how to take control of your hectic schedule with programs that manage your appointments, contacts, and gift lists, and even help you send out holiday cards. http://cgi.zdnet.com/slink?/adeskb/adt1126/2827127:8593142 > > > > > _____________________CRUCIAL CLICKS_____________________ Make sure you see these features on ZDNet today! DON'T MISS ZDNET'S HOLIDAY GIFT GUIDE http://chkpt.zdnet.com/chkpt/adeskclicks/http://www.zdnet.com/special/holiday2001/index.html DRIVE FAST WITH A SPEEDY PHILIPS CD-R/RW http://chkpt.zdnet.com/chkpt/adeskclicks/www.zdnet.com/products/stories/overview/0,8826,531878,00.html WILL SUN BE THE ONE FOR WEB SERVICES? http://www.zdnet.com/techupdate/stories/main/0,14179,2823421,00.html ******************ELSEWHERE ON ZDNET!****************** Check out the season's best tech gear in our Holiday Gift Guide! http://cgi.zdnet.com/slink?164489 Get the latest enterprise application news, reviews and analysis. http://cgi.zdnet.com/slink?164490 Browse this week's top 50 tech products at ZDNet Shopper. http://cgi.zdnet.com/slink?164491 PCs, notebooks, PDAs, and more -- find perfect gifts for everyone. http://cgi.zdnet.com/slink?164492 Does your career need a jumpstart? View over 90,000 job listings. http://cgi.zdnet.com/slink?164493 *********************************************************** AnchorDesk comes to you free of charge as a service of ZDNet. On its companion Web site, AnchorDesk includes full details on the stories you see above, plus late-breaking news, links to in-depth information, and much more. Visit: http://www.anchordesk.com/ To subscribe, unsubscribe, or make changes to your subscription, please go to: http://cgi.zdnet.com/slink?130228 We are sending this news alert to the address: [email protected] Please make sure to provide this address in all your e-mail messages to us. Thanks! Copyright ? 2001 ZD Inc. ZDNet is a registered service mark of ZD Inc. ZDNet Logo is a service mark of ZD Inc. ###
1,520
allen-p/deleted_items/44.
Your Approval is Overdue: Access Request for [email protected] , This request has been pending your approval for 52 days. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000067320&Page=Approval to review and act upon this request. Request ID : 000000000067320 Request Create Date : 10/11/01 10:24:53 AM Requested For : [email protected] Resource Name : Risk Acceptance Forms Local Admin Rights - Permanent Resource Type : Applications
1,521
allen-p/deleted_items/440.
Expense Reports Awaiting Your Approval , The following reports have been waiting for your approval for more than 4 days. Please review. Owner: Jane M Tholt Report Name: November 21, 2001 Days In Mgr. Queue: 5
1,522
allen-p/deleted_items/442.
Free Shipping Ends December 4--Shop Today , [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Search Amazon.com for: We hope you enjoyed receiving this message. However, if you'd rather not receive future e-mails of this sort from Amazon.com, please visit the Help page Updating Subscriptions and Communication Preferences and click the Customer Communication Preferences link. Please note that this e-mail was sent to the following address: [email protected] [IMAGE]
1,523
allen-p/deleted_items/443.
You are pre-approved for a Chase Platinum MasterCard , [IMAGE] You are receiving this offer as a member of the itsImazing Network. If you prefer not to receive future messages, please scroll to the bottom of this message and follow the instructions. [IMAGE] Chase Platinum MasterCard [IMAGE] Phillip Allen,[IMAGE] [IMAGE] You are "Pre-Approved" for a Chase Platinum MasterCard. Just click here to apply for your card. Then wherever you go on the World Wide Web, you'll carry great online benefits, like: [IMAGE] To apply for your card, click on the button below. [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] 0.00% Introductory APR on balance transfers for up to twelve months* [IMAGE] Internet Shopping Guarantee - Shop online without the risk [IMAGE] Access your credit card account online . . .free. Its fast, easy and secure [IMAGE] Free ChaseCompanionSM?? e-Wallet - a convenient way to shop online. Securely store your addresses, credit cards, and passwords. Automatically fills in forms at checkout. You'll even get money-saving discounts and exclusive offers. [IMAGE] [IMAGE] We've made it easy to apply. Just click on the "Apply Now" button below. But be sure to respond before December 28, 2001. [IMAGE] [IMAGE] [IMAGE] *[IMAGE] See Notice , Summary of Terms and Additional Disclosures for information regarding this offer. ?? ChaseCompanion e-Wallet given to approved accounts that originate from an online application. Copyright 2001. Chase Manhattan Bank USA, NA. All rights reserved. If you would prefer not to receive future messages, click here . [IMAGE] [IMAGE] [IMAGE]
1,524
allen-p/deleted_items/444.
Your Approval is Overdue: Access Request for [email protected] , This request has been pending your approval for 34 days. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000067320&Page=Approval to review and act upon this request. Request ID : 000000000067320 Request Create Date : 10/11/01 10:24:53 AM Requested For : [email protected] Resource Name : Risk Acceptance Forms Local Admin Rights - Permanent Resource Type : Applications
1,525
allen-p/deleted_items/445.
How do I eat crow and still make it tasty??????? , To all of our esteemed & prized Internet Banking (IBS) Clients: You probably have begun to wonder does anyone ever return phone calls (or e-mails). We really do but have been holed up trying to complete this project ASAP. We knew that this might upset some clients, but we found that this is the quickest way to fix this problem and get our users back on-line. We have finalized the movement of your customer account #s and re-linked your additional accounts back to your primary Login ID (Acct #). This process was more daunting than we anticipated and having to verify 1100 IBS users and account #s (to insure your data integrity and confidentiality) was even more grueling than expected. After verifying data and Login IDs, we believe that we are on the right track. Some of you (our IBS clients) might notice your accounts displayed more than once or additional accounts displayed that you may (or may not) want displayed on your IBS screen. Should this be the case, please e-mail (or phone) the information to us and we will remove this information right away. To our IBS Billpayer clients: During this process, we seem to have misplaced (blown away) your bill payment information (particularly anyone that has [had] reoccurring payments scheduled to process on particular days). This has become our highest priority to retrieve this information, thus alleviating the process of having to request that our IBS Billpayers re-enter this information. We are going to waive all bill payment charges for the months of November & December, 2001 to try and regain your confidence (and support). Again, we deeply express our regrets and hope that we (yourselves and ourselves) do not have to go through this process again. Should you be one of our IBS clients that still has not gained access to your account information, please refer to the following information: 1) You have entered your password incorrectly (or what you thought was the correct password) and been given the error message "You have failed to correctly login three times today; please try again tomorrow, or contact the bank at 830-379-5236 to have your password reset." This is the easiest problem to correct and we can fix this one quickly with you online (on the phone or by e-mail [our preferred method]). Should you receive this message, please call our Computer Department and ask for either myself (Howard Gordon) @ 830-401-1185, Christina Kirby @ 830-401-1189, or Lora Robles @ 830-401-1182. If you reach our voice mail (or another employee), please leave your Name, Account # and call back #. 2) You are not using the last six (6) digits of your ssn# (this is the ssn# or tin# of the primary account holder). Please try again using the last six (6) digits, or call us to determine who we have recorded as the primary account holder. Since we have released these accounts for IBS access, you will have to again use the last six (6) digits of your ssn# (this is the ssn# or tin# of the primary account holder), then you will be directed to a screen that asks for information such as: Name Address City, State Zip+4 Phone # E-Mail Address After entering this information and clicking submit, you will then be instructed to change your password to anything that you desire (you can at this point change your password back to what it was before). Always remember that your password is case sensitive. Again we want to thank you for your patience through this (trying) ordeal, and we look forward to serving your IBS needs in the future. Sincerely, Howard Gordon Network Manager - geninfo.vcf
undisclosed-recipients:;@ENRON <??Sundisclosed-recipients:;@ENRON>
1,526
allen-p/deleted_items/447.
Portland Fundamental Analysis Strategy Meeting Info , PLEASE NOTE: Call-in information will change weekly. The call-in information for the Tuesday Portland Fundamental Analysis Strategy Meeting is as follows: Date: Tuesday, 11/27/01 Time: 1:00 p.m. (PST) Dial In Number: 888-380-9636 Participant Code: 445270 If you have any questions, please contact Kathy Sheppard at 503-464-7698. Thanks.
1,528
allen-p/deleted_items/448.
West Power Briefing , Charts for today's briefing are attached:
1,529
allen-p/deleted_items/449.
Answer , For purposes of an accelerated distribution from the PSA, a "single sum distribution," in Section 6.2 means that a PSA account is distributed all at once, as distinguished from another form of payout as may have been selected by a participant in his or her deferral agreement. Section 6.2 is clear in that the account balance shall be determined as of the last day of the month preceding the date on which the Committee receives the written request of the Participant. A PSA account balance is reflected in shares of stock since the form of distribution is shares of stock. Additionally, any portion of a PSA balance attributable to deferral of restricted stock is administered under Sections 3.5 and 3.6 and Exhibit A of the Plan. This section is applicable now as we are accelerating the distribution of PSA balances created with deferrals of restricted stock. The Plan indicates that upon death, disability, retirement or termination, the share units are converted to shares which are issued to the executive according to the payment election made by the executive at the time of the deferral election. Therefore the distribution you will receive in shares is correct and we do not agree with your interpretation of the plan.
1,530
allen-p/deleted_items/45.
NEWS ALERT: Argentina's President Resigns , __________________________________ BUSINESS ALERT from The Wall Street Journal Dec. 20, 2001 Argentina's president resigned, a high-ranking official said. The end of De la Rua's two-year term, amid violent reaction to his handling of a deepening financial crisis, came hours after the country's economy minister stepped down. For more information, see: http://interactive.wsj.com/articles/SB1008839567321991160.htm __________________________________ ADVERTISEMENT In touch. Any time. Anywhere. With Lotus Wireless Solutions, you can stay connected via cell phones, PDAs and other wireless devices. Collaborate more efficiently to make time-critical decisions, respond to customer needs faster and eliminate "downtime." Click for special offers. http://www.lotus.com/informedmw __________________________________ SUBSCRIPTION INFORMATION TO REMOVE YOURSELF from this list, see: <http://interactive.wsj.com/user-cgi-bin/searchUser.pl?action=emailalert> http://interactive.wsj.com/user-cgi-bin/searchUser.pl?action=emailalert Then uncheck the appropriate box to unsubscribe from this list. Click on the "save selections" button. When you registered with WSJ.com, you indicated you wished to receive this Business News Alert e-mail. For further questions, please call our customer service department at 1-800-369-2834 or 1-609-514-0870 between the hours of 8 a.m. and 9 p.m Eastern Monday-Friday or e-mail [email protected]. __________________________________ Copyright 2001 Dow Jones & Company, Inc. All Rights Reserved.
1,531
allen-p/deleted_items/450.
, Get your FREE download of MSN Explorer at http://explorer.msn.com - DESIGNSELECTIONS_DyalRoberts.doc
1,532
allen-p/deleted_items/451.
Summary of Today's Meeting , Phillip, Thank you for meeting with us today. I want to take a few minutes to summarize the decisions that came out of our meeting. 1. Feedback Approach: We will incorporate the ideas and suggestions you gave us and move forward with this approach. 2. SME Review of Knowledge System Topics: When the time comes for Topics reviews, we will send you the name of the SME who is responsible for sign-off on each topic. 3. Conversion and Arbitrage Problems: We will brainstorm ways to incorporate more problems without going over our 4-6 hour target. We will meet with you next Tuesday at 10:00 to review the problems as we've designed them so far and arrive at a solution. (I will send an e-mail Monday with the room number.) Have a good weekend. Mery This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited.
1,533
allen-p/deleted_items/452.
RE: , Wow! this looks complicated. let me get some help on this and get back to= you -----Original Message----- From: =09Allen, Phillip K. =20 Sent:=09Friday, November 16, 2001 8:38 AM To:=09Whalley, Greg; Lavorato, John Subject:=09FW:=20 Greg, After making an election in October to receive a full distribution of my de= ferral account under Section 6.3 of the plan, a disagreement has arisen reg= arding the Phantom Stock Account. =20 Section 6.3 states that a participant may elect to receive a single sum dis= tribution of all of the participant's deferral accounts subject to a 10% pe= nalty. This provision is stated to be notwithstanding any other provision = of the plan. It also states that the account balance shall be determined a= s of the last day of the month preceding the date on which the committee re= ceives the written request of the participant. In my case this would be as= of September 30th. I read this paragraph to indicate a cash payout of 90%= of the value of all deferrals as on September 30, 2001. The plan administ= rators, however, interpret this paragraph differently. Their reading yield= s a cash payout of 90% of the value for deferrals other than the Phantom St= ock Account, which they believe should be paid with 90% of Enron Corp. sha= res in the account as of September 30, 2001. Their justification is that i= n several places throughout the plan document and brochures it is stated th= at the distributions of the Phantom Stock Account shall be made in shares o= f Enron Corp. common stock. There are two reason that I do not agree with their interpretation. First,= section 6.3 begins with "notwithstanding any other provision of the Plan.= " This indicates that any other payout methodologies described in other se= ctions of the plan which deal with normal distribution at termination do no= t apply. Second, the language in section 6.3 stating "a single sum distrib= ution of all of the Participant's deferral accounts" indicates that one pay= ment will be made not a cash payment separate from a share distribution. The interpretation of the administrators goes beyond section 6.3. If that = is the case then section 7.1 should apply. This section does provide for t= he Phantom Stock Account to be paid in shares. However, it states "The val= ue of the shares, and resulting payment amount, will be based on the closin= g price of Enron Corp. common stock on the January 1 before the date of pay= ment, and such payment shall be made in shares of Enron Corp common stock".= This would result in approximately 8.3 shares to be distributed for every= share in the account on January 1, 2001. Although this would be the most = beneficial to the participants due to the decline of the value of Enron Cor= p. common stock from $83 to $10 per share, this methodology goes beyond se= ction 6.3. The calculations below illustrate the difference in the value and method of= distribution under each of the three interpretations: Section 6.3=09=09Plan Administrators=09=09Section 7.1 Number of shares=09=096,600=09shares=09=096,600=09shares=09=09=096,600 shar= es Relative share price=09=09$27.23=09=09=09=09=09=09=09$83.13 Phantom Stock Value=09=09$179,718=09=09=09=09=09=09$548,658 10% Penalty=09=09=09-17,972=09=09=09 -600=09=09=09=09-54,866 Value to be distributed=09=09$161,746=09=096,000 shares=09=09=09$493,792 Current stock price=09=09=09=09=09=09=09=09=09$10 Distribution=09=09=09$161,746=09=096,000 shares=09=09=0949,379 shares I believe my interpretation under section 6.3 is correct and fair. If the = administrators insist on distributing shares instead of cash then section 7= .1 should apply. The current interpretation of the plan administrators is = a hybrid between the two sections resulting in the lowest possible payout. = =20 In addition to myself, Tom Martin, Scott Neal, and Don Black are facing the= same issue. I would appreciate your review and consideration of this matt= er. Sincerely, Phillip Allen =20 =09=09=09=09=09=09=09=09=09=09
1,534
allen-p/deleted_items/453.
TRV Notification: (West NG Prices - Basis - 11/27/2001) , The report named: West NG Prices - Basis <http://trv.corp.enron.com/linkFromExcel.asp?report_cd=45&report_name=West+NG+Prices+-+Basis&category_cd=2&category_name=WEST&toc_hide=1&sTV1=2&TV1Exp=Y&current_efct_date=11/27/2001>, published as of 11/27/2001 is now available for viewing on the website.
1,535
allen-p/deleted_items/454.
BRM module , Phillip, I know that Yevgeny has been keeping you upto speed with the options we have on the BRM deal. We have Accenture exploring the Zero option, as well as other restructuring choices. As I'm sure you know, we will be in a better position to make a definite choice, next week. If you have any questions, do call. Tim
1,536
allen-p/deleted_items/455.
Wednesday Meeting , Phillip, I will get a room for our Wednesday 10:00 meeting and e-mail you with the room number. FYI, our goal is to discuss the expert path (best answers) for the storage problem and to ask you some specific questions regarding storage. Also, if you have time, could you send me a definition of Intra-Month Risk? Thank you for your help. Mery This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited.
1,537
allen-p/deleted_items/46.
New Texas Power Markets Report , [IMAGE] To help celebrate the season, Skipping Stone is happy to offer you a special limited time discount on our Deregulation of Texas Power Markets Report. Order your report todayfor $100 off the regular price of $995 any time before December 28th. The newly updated Texas Report has all the facts on the Texas Power Market in one clear and coherent 100+ page report. Detailed Legislative Summary Comprehensive and Up-to-date Market Rules Description of the Wholesale Markets ERCOT Rules and Participation Requirements Price to Beat and POLR Decisions and Opportunities Complete Economic and Market Analyses How to Work Within the Infrastructure Comprehensive Review of the Pilot Program The Latest Revised Market Participant Analysis Key Contacts Information And Much More! This Report will provide the information needed to decide whether and how to enter the Texas market and to develop a business plan for market entry and to develop and market products. Once purchased, you will have up to 30 minutes of accessto Skipping Stone's experts to askany questions youmay have. Visit: http://www.skippingstone.com/product/txreport.htm or call 888-792-2592 for more information or to take advantage of this special offer! This offer is good through 12/28/01. The Report will be delivered electronically in a PDF format. Each report is uniquely identified with an embedded identification number. Unauthorized copying, electronically or otherwise, of the report is a violation of federal law. Skipping Stone offers a site license for up to ten copies for $4,595.
1,538
allen-p/deleted_items/47.
RE: Chase Backtest , no -----Original Message----- From: Allen, Phillip K. Sent: Monday, December 17, 2001 4:58 PM To: Lavorato, John Subject: FW: Chase Backtest -----Original Message----- From: Hayden, Frank Sent: Monday, December 17, 2001 4:54 PM To: Allen, Phillip K. Cc: Gossett, Jeffrey C.; White, Stacey W. Subject: FW: Chase Backtest Attached is the file I'm proposing to send to Chase with suggested wording. To eliminate "Chase" from using data to "back-in" to pnl, we deleted all up days, and forwarded out corrected data, per files received from Jeff and Stacey. Please review and provide feedback. Additionally, if you are comfortable with data, please authorize its release. Thanks Frank << File: EnronVaRCurveShiftRevised.12.17.01.xls >> "Steve Following on from our discussion concerning the back testing data, we have re-checked the underlying data with our middle office. There were some errors in your file which we have now corrected, and for clarity, included losses in the backtest file, since these are what we consider in the backtest process. I trust this helps - let us know if you need anything further Regards"
1,539
allen-p/deleted_items/48.
Follow up: New Company - Online Trader Access (Stack Manager & , Please populate the attached worksheets(Stack & Website) for EAST, WEST & FINANCIAL Gas Trader Access and return to me once complete. Let me know if you have any questions. Thank you Stephanie Sever x33465 -----Original Message----- From: Sever, Stephanie Sent: Monday, December 17, 2001 10:20 AM To: Allen, Phillip K.; Arnold, John; Martin, Thomas A.; Neal, Scott; Shively, Hunter S. Cc: Lees, Lisa; Denny, Jennifer Subject: New Company - Online Trader Access (Stack Manager & Website) Please populate the attached worksheets for Stack Manager & Website Access. I have added the Gas product types and a drop down for each user/product type to populate with READ, EXECUTE or NONE. For READ ONLY Website ID's, additional population is NOT necessary. Please add or remove names as necessary and return to me once complete. Let me know if you have any questions. Thank you, Stephanie Sever EnronOnline 713-853-3465
1,540
allen-p/deleted_items/49.
PHILLIP, Here's Your Holiday Gift -- A Free Cell Phone! , index6 [IMAGE] [IMAGE] [IMAGE] [IMAGE] Co dee Enter Your Area Code Enter Your Zip Code [IMAGE] [IMAGE] [IMAGE] [IMAGE] Privacy Policy [IMAGE] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ This email is not sent unsolicited. This is an XciteMail mailing! This message is sent to subscribers ONLY. The e-mail subscription address is: [email protected] To unsubscribe please click here. or Send an email with remove as the subject to [email protected] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 08943A37-C26C-43AE-897A-13856DF90795
1,541
allen-p/deleted_items/5.
Metro Bus Passes and Woodlands Express Passes Available Effective , Enron employees not participating in contract parking are eligible to receive Metro Bus Passes or Woodlands Express Passes. You may pick up a bus pass from the Parking & Transportation Desk, on Level 3 of the Enron Building, from 8:30 AM to 4:30 PM. All Metro passes offered through the Enron Parking & Transportation desk will be the Metro 30 Day Zone Pass. When you use a 30-day zone pass, bus service is divided into four zones w/ unlimited rides. The zone pass is time activated, which means that it will not become active until the first time it is used and will not expire until 30 days after it was used for the first time. New passes will be available to Enron employees upon expiration of the 30 day time period. Each zone does have a different fare values based on the distance the bus travels. This is important to any buser who wants to transfer to or travel in a higher-cost zone than the zone pass they have, in this case the difference must be paid in cash. If they are traveling in a lower cost zone, then there is no extra cost. Parking & Transportation Desk 3-7060
1,542
allen-p/deleted_items/50.
TECH ALERT: The Year in Technology 2001 , __________________________________ TECHNOLOGY ALERT from The Wall Street Journal Thursday, Dec. 20, 2001 A long slump battered technology companies this year, but the Internet's role in everyday life continued to grow. See how stocks performed, check out the key Internet metrics, and read how one neighborhood used the Net as a lifeline after Sept. 11. Also, click around our interactive timeline and vote for the top story of 2001. See more at: http://interactive.wsj.com/pages/technology2001-6.htm Vote for the top tech story at: http://discussions.wsj.com/n/mb/message.asp?webtag=wsjvoices&msg=2255 __________________________________ ADVERTISEMENT Electronic Bill Presentment and Payment (EBPP) are critical components of your e-business strategy. Find out how powerful electronic EBPP/eSP capabilties of IBM Content Manager OnDemand enable these technologies. Content Manager onDemand is an essential component of high customer satisfaction. Visit http://www.ibm.com/software/info/visitor/db2/enewsletter/45 _________________________________ SUBSCRIPTION INFORMATION TO REMOVE YOURSELF from this list, see: http://interactive.wsj.com/user-cgi-bin/searchUser.pl?action=emailalert Then uncheck the appropriate box to unsubscribe from this list. Click on the "save selections" button. For further questions, please call our customer service department at 1-800-369-2834 or 1-609-514-0870 between the hours of 8 a.m. and 9 p.m Eastern Monday-Friday or e-mail [email protected]. __________________________________ Copyright 2001 Dow Jones & Company, Inc. All Rights Reserved.
1,543
allen-p/deleted_items/51.
Phillip, it's trivia time!! , [IMAGE] Hey, Phillip - it's trivia time! Think you know TV? Take the iWon TV Trivia Challenge - once you've answered the question, you'll be eligible to win the Home Cinema System valued at $3,500. (Nothing trivial about that!) [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Good luck! - The iWon Team [IMAGE] [IMAGE] No Purchase Necessary For Sweepstakes Subject To Official Rules Forgot your member name? It is: PALLEN70 Forgot your iWon password? Click here. You received this email because when you registered at iWon you agreed to receive email from us. To unsubscribe from one or more email categories, please click below. Please note, changes may take up to one week to process. If you're not signed in, you will need to do so before you can update your profile. Click here. [IMAGE]
1,544
allen-p/deleted_items/52.
ANCHORDESK: Why the idea of an ID chip makes my skin crawl , _____________________DAVID COURSEY_____________________ WHY THE IDEA OF AN ID CHIP MAKES MY SKIN CRAWL Dogs, cats, and cows have them now, so how long could it be before a surgically inserted ID chip comes to people? In the case of the new VeriChip, the answer is how long it takes for the FDA to approve it. This is an example of a technology that could help some people--but hurt lots of others, too. Let me explain why the VeriChip should give you shivers, too. http://cgi.zdnet.com/slink?/adeskb/adt1220/2833893:8593142 PLUS: ANCHORDESK RADIO: IS THE FREE WEB DEAD? http://cgi.zdnet.com/slink?/adeskb/adt1220/2833892:8593142 # _____________________NEWS ANALYSIS_____________________ Sylvia Carr XP HEATING UP?... DON'T COPY THAT CD!... 'NEW YEAR' WORM HITS... How's Windows XP doing? Not so hot on the retail front. But that doesn't mean it's going to be a flop. Judging by license sales to PC makers and businesses--a better measure of an operating system's success--XP may become Microsoft's best-selling OS yet. http://cgi.zdnet.com/slink?/adeskb/adt1220/2833900:8593142 _____________________EXPERT ADVICE_____________________ Robert Vamosi WANT BETTER WORKPLACE SECURITY? JUST USE SOME COMMON SENSE! Yes, almost every electronic device emits radio noise that can be eavesdropped by your enemies. But is this really your company's biggest security worry? Robert says no. Your real concerns are much more mundane--like closing your shades. http://cgi.zdnet.com/slink?/adeskb/adt1220/2833569:8593142 > > > > > Janice Chen LIGHTEN YOUR LOAD WITH THIS SLEEK AND SEXY NOTEBOOK Longer lines at airports and tighter restrictions on carry-on luggage mean you want your laptop to be as thin and light as possible. Your best bet? An ultralight. Janice has chosen a beauty--the Sharp PC-UM10--that's featherlight, super thin, and still has a lot of power under the hood. http://cgi.zdnet.com/slink?/adeskb/adt1220/2833832:8593142 > > > > > Preston Gralla IM: HERE'S TALK THAT ISN'T JUST CHEAP, IT'S FREE For staying in constant contact with your friends and co-workers, it doesn't get much better than instant messaging. Preston rounds up three downloads that will get you into the IM game if you're not already, or show you how to make the most of your program if you're already addicted. http://cgi.zdnet.com/slink?/adeskb/adt1220/2833829:8593142 > > > > > _____________________CRUCIAL CLICKS_____________________ Make sure you see these features on ZDNet today! DON'T MISS ZDNET'S LAST-MINUTE HOLIDAY SHOPPING GUIDE http://chkpt.zdnet.com/chkpt/adeskclicks/http://zdnetshopper.cnet.com/shopping/0-7413293-7-8143480.html COMING SOON... A HANDHELD THAT TALKS BACK http://www.zdnet.com/techupdate/stories/main/0,14179,2831331,00.html CHECK OUT THIS NEARLY PERFECT DIGITAL CAMERA http://www.zdnet.com/supercenter/stories/overview/0,12069,533678,00.html ******************ELSEWHERE ON ZDNET!****************** Thrill your favorite techie with perfect presents at ZDNet Shopper. http://cgi.zdnet.com/slink?166139 Ten tips to help you attain CRM ROI. http://cgi.zdnet.com/slink?166140 Get the lowdown on all the different wireless LAN standards. http://cgi.zdnet.com/slink?166141 Editors' Top 5: Check out the best gifts money can buy. http://cgi.zdnet.com/slink?166142 Find out about standardizing C# in Tech Update's special report. http://cgi.zdnet.com/slink?166143 *********************************************************** AnchorDesk comes to you free of charge as a service of ZDNet. On its companion Web site, AnchorDesk includes full details on the stories you see above, plus late-breaking news, links to in-depth information, and much more. Visit: http://www.anchordesk.com/ To subscribe, unsubscribe, or make changes to your subscription, please go to: http://cgi.zdnet.com/slink?130228 We are sending this news alert to the address: [email protected] Please make sure to provide this address in all your e-mail messages to us. Thanks! Copyright ? 2001 ZD Inc. ZDNet is a registered service mark of ZD Inc. ZDNet Logo is a service mark of ZD Inc. ###
1,545
allen-p/deleted_items/53.
Request Submitted: Access Request for [email protected] , You have received this email because you are listed as a security approver. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000079825&Page=Approval to review and act upon this request. Request ID : 000000000079825 Request Create Date : 12/19/01 9:25:15 PM Requested For : [email protected] Resource Name : ICE - External Intercontinental Exchange US Natural Gas Resource Type : Applications
1,546
allen-p/deleted_items/54.
Uncover Profit in Today's Tech Market! , Get the information you need on tech stocks from TheStreet.com's Scott Moritz before other investors know what's going on! Get The Tech Edge absolutely FREE for two weeks! http://sub.thestreet.com/c/go/XTEK/DEDM-exprd1?s=S961&D=XTEK Dear Investor: Will some tech stocks recover before others? Should you sell or hold tech stocks in your portfolio? Is there a recovery coming? What are the hidden stock gems that you could profit from right now? Scott Moritz, known in the investment community for his uncanny scoops on tech news and stories of critical importance to investors, provides you with all of the answers in The Tech Edge, TheStreet.com's newest premium product. ----------------------------------------------------------------------- Click here for your FREE two-week trial subscription to The Tech Edge: http://sub.thestreet.com/c/go/XTEK/DEDM-exprd1?s=S961&D=XTEK ----------------------------------------------------------------------- With your FREE two-week trial subscription to The Tech Edge, you'll get the kind of information you need to make sound investment decisions. As an exclusive member, you'll be entitled to these member benefits: *** An exclusive investigative report sent by email every other Tuesday, giving you the inside story on tech stocks and what's going on in the tech sector. *** Top-10 lists of tech stocks, such as the attractive tech stocks with low P/E ratios, best telecom picks and 10 tech stocks to dump now and more! *** Special email reports when there are breaking developments in the tech sector that might require action and can't wait for the regular bi-weekly reports. *** Answers to important questions from readers about tech investing strategy that can help you become a better investor. *** Bonus Report - 4 Little-Known Facts That Will Affect Your Tech Investments In 2002. This report will provide you with the kind of information you need to succeed when investing in tech stocks in today's market. *** Bonus Report - Tech Investing in 2002: 2 Winners and 2 Losers. This report is a must-have for investors interested in tech stocks. So what are you waiting for if you have absolutely nothing to lose? Sign-up today for your FREE two-week trial subscription to The Tech Edge and get the information you need to make well-informed investments in tech stocks. http://sub.thestreet.com/c/go/XTEK/DEDM-exprd1?s=S961&D=XTEK Just a reminder: Unless you notify us to cancel your subscription before the end of your FREE two-week trial period, your subscription will automatically continue and your credit card will be charged $19.95 per month. You may cancel your subscription by contacting our Customer Service department at 1-800-562-9571. ---------------------------------------------------------------------- Brought to you by TheStreet.com www.thestreet.com ---------------------------------------------------------------------- TheStreet.com is not registered as a securities broker-dealer or an investment advisor either with the U.S. Securities and Exchange Commission or with any state securities regulatory authority. Both The Tech Edge website and represent Mr. Moritz's own investment opinions, and should not be construed as personalized investment advice. Mr. Moritz cannot and does not assess, verify or guarantee the suitability of any particular investment to your own situation. You bear responsibility for your own investment research and decisions and should seek the advice of a qualified securities professional before making any investment. This email has been sent to you by TheStreet.com because you are a current or former subscriber (either free-trial or paid) to one of our web sites. If you would prefer not to receive these types of emails from us in the future, please click here: https://secure2.thestreet.com/cap/unsubscribe.do?Type=3 If you are not a current or former subscriber, and you believe you received this message in error, please forward this message to [email protected], or call our customer service department at 1-800-562-9571. Please be assured that we respect the privacy of our subscribers. To view our privacy policy, please click here: http://www.thestreet.com/tsc/about/privacy.html
1,547
allen-p/deleted_items/56.
Your Approval is Overdue: Access Request for [email protected] , This request has been pending your approval for 51 days. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000067320&Page=Approval to review and act upon this request. Request ID : 000000000067320 Request Create Date : 10/11/01 10:24:53 AM Requested For : [email protected] Resource Name : Risk Acceptance Forms Local Admin Rights - Permanent Resource Type : Applications
1,548
allen-p/deleted_items/57.
NEWGen Release December 2001 , This is a message to let you know that the NEWGen December 2001 release is available on www.rdionline.com. If you do not want to receive this message please reply with unsubscribe as the subject line. Happy Holidays! The NEWGen Staff
1,549
allen-p/deleted_items/59.
News Alert: AT&T Will Merge Cable Business With Comcast , __________________________________ BUSINESS ALERT from The Wall Street Journal Dec. 19, 2001 AT&T struck a deal to merge its cable TV business with Comcast, creating a cable behemoth with more than 21 million customers and capping a five-month auction that elicited bids from some of the nation's media and cable titans. For more information see: http://interactive.wsj.com/articles/SB1008803774562546920.htm __________________________________ ADVERTISEMENT In touch. Any time. Anywhere. With Lotus Wireless Solutions, you can stay connected via cell phones, PDAs and other wireless devices. Collaborate more efficiently to make time-critical decisions, respond to customer needs faster and eliminate "downtime." Click for special offers. http://www.lotus.com/informedmw __________________________________ SUBSCRIPTION INFORMATION TO REMOVE YOURSELF from this list, see: <http://interactive.wsj.com/user-cgi-bin/searchUser.pl?action=emailalert> http://interactive.wsj.com/user-cgi-bin/searchUser.pl?action=emailalert Then uncheck the appropriate box to unsubscribe from this list. Click on the "save selections" button. When you registered with WSJ.com, you indicated you wished to receive this Business News Alert e-mail. For further questions, please call our customer service department at 1-800-369-2834 or 1-609-514-0870 between the hours of 8 a.m. and 9 p.m Eastern Monday-Friday or e-mail [email protected]. __________________________________ Copyright 2001 Dow Jones & Company, Inc. All Rights Reserved.
1,550
allen-p/deleted_items/6.
NGI Publications - Friday, December 28th 2001 , Dear phillip, This e-mail is automated notification of the availability of your current Natural Gas Intelligence Newsletter(s). Please use your username of "pallen" and your password to access NGI's Daily Gas Price Index http://intelligencepress.com/subscribers/index.html If you have forgotten your password please visit http://intelligencepress.com/password.html and we will send it to you. If you would like to stop receiving e-mail notifications when your publications are available, please reply to this message with REMOVE E-MAIL in the subject line. Thank you for your subscription. For information about other Intelligence Press products and services, including maps and glossaries visit our web site at http://intelligencepress.com or call toll-free (800) 427-5747. ALL RIGHTS RESERVED. (c) 2001, Intelligence Press, Inc. ---
1,551
allen-p/deleted_items/60.
News Alert: AT&T Will Merge Cable Business With Comcast , __________________________________ TECHNOLOGY ALERT from The Wall Street Journal Dec. 19, 2001 AT&T struck a deal to merge its cable TV business with Comcast, creating a cable behemoth with more than 21 million customers and capping a five-month auction that elicited bids from some of the nation's media and cable titans. For more information see: http://interactive.wsj.com/articles/SB1008803774562546920.htm __________________________________ ADVERTISEMENT Electronic Bill Presentment and Payment (EBPP) are critical components of your e-business strategy. Find out how powerful electronic EBPP/eSP capabilties of IBM Content Manager OnDemand enable these technologies. Content Manager onDemand is an essential component of high customer satisfaction. Visit http://www.ibm.com/software/info/visitor/db2/enewsletter/45 _________________________________ SUBSCRIPTION INFORMATION TO REMOVE YOURSELF from this list, see: http://interactive.wsj.com/user-cgi-bin/searchUser.pl?action=emailalert Then uncheck the appropriate box to unsubscribe from this list. Click on the "save selections" button. For further questions, please call our customer service department at 1-800-369-2834 or 1-609-514-0870 between the hours of 8 a.m. and 9 p.m Eastern Monday-Friday or e-mail [email protected]. __________________________________ Copyright 2001 Dow Jones & Company, Inc. All Rights Reserved.
1,552
allen-p/deleted_items/61.
Western Price Survey, midweek report 12/19/01 , Here is the midweek report, which will probably look a lot like the Friday report, which will be our last for 2001. Happy holidays, if you are taking off early. And thanks for everything. The following section of this message contains a file attachment prepared for transmission using the Internet MIME message format. If you are using Pegasus Mail, or any another MIME-compliant system, you should be able to save it or view it from within your mailer. If you cannot, please ask your system administrator for assistance. ---- File information ----------- File: Spotwed649.doc Date: 19 Dec 2001, 16:12 Size: 22528 bytes. Type: MS-Word - Spotwed649.doc
1,553
allen-p/deleted_items/62.
FROM CINDY OLSON, COMMUNITY RELATIONS: Discount Tickets to The , Dear Enron Employee: Houston Ballet is presenting The Nutcracker through Sunday, December 30. The production has been hailed by the Houston chronicle as "the crown jewel of holiday entertainment," and is a perfect introduction to the world of ballet for families and audiences of all ages. Enron has been a long-time supporter of the Ballet, and we would like to thank you with a special invitation from Houston Ballet and TicketMaster for discount tickets to The Nutcracker. Click on the following links below to receive a 25% discount on tickets to any of the selected performances of The Nutcracker. To place your order, click on the link below to choose your day and time. When requesting your tickets, you may choose from best available seats or a specific section, however, all ticket prices may not be available. Ticketmaster service and handling charges will apply to your order. Your company code is: NUT1. Happy Holidays and enjoy Houston Ballet. Performance Dates and Times: Wednesday, December 26 at 7:30pm https://ticketing.ticketmaster.com/cgi/purchasePage.asp?event_id=C003345C3DE86FB&event_code=EHL1226 Thursday, December 27 at 7:30pm https://ticketing.ticketmaster.com/cgi/purchasePage.asp?event_id=C003345D10FB243&event_code=EHL1227 Saturday, December 29 at 2:00pm https://ticketing.ticketmaster.com/cgi/purchasePage.asp?event_id=C003345CDB2A7A1&event_code=EHL1229M Sunday, December 30 at 2:00pm https://ticketing.ticketmaster.com/cgi/purchasePage.asp?event_id=C003345CDDBA7F9&event_code=EHL1230M
1,554
allen-p/deleted_items/63.
Fire Drill Scheduled , As required by the Houston Fire Department, a fire drill has been scheduled for the Enron Center Campus. Enron Center North, 1400 Smith St., approximately 3:15 PM on Thursday, December 20th, 2001 Enron Center South, 1500 Louisiana St., approximately 3:45 PM on Thursday, December 20th, 2001 Please advise all clients, contractors, and visitors that this will be a fire drill only. The fire alarm will sound at 3:15 PM in Enron Center North and 3:45 PM in Enron Center South. You will be asked to go to the stairwell and standby. Do not go into the stairwell. Further instructions will be given over the public address system. If you experience any difficulties in hearing either the fire alarm or any announcements over the public address system, please notify the Facilities Help Desk by e-mail at [email protected]. Anyone that is mobility impaired or medically disabled may be excused from participating in this drill by sending an e-mail to Harry Grubbs. If you have any questions or need any additional information, please contact Harry Grubbs at 713-853-5417.
All Enron Houston@ENRON <??SAll Enron Houston@ENRON>
1,555
allen-p/deleted_items/64.
PHILLIP, Coming Soon! , PHILLIP, Look for this great offer in the mail or get 12 CDs for the price of 1 online right now ! [IMAGE] [IMAGE] P.S. Click here to forward this e-mail to your friends so everyone can enjoy this unbeatable offer on CDs! ************************************************** If you'd rather not receive e-mail from BMG Music Service, please click here . [IMAGE]
1,556
allen-p/deleted_items/65.
FW: Wishing you well , As some of you might already know, I resigned today. I feel fortunate and blessed to have had this experience here at Enron. Not only have I learned a tremendous amount, but I also have met some very talented and unique people. I am not 100% sure what I will do at this point, but I will probably be heading up to NYC in January. I feel sad to end this chapter, yet excited as I begin a new one in my life. As always, it has been a pleasure working with you! Keep in touch. I will be interested to see what happens. Carole C. Frank Enron Net Works 713.345.3960 work 713.446.9307 cell 713.467.3860 home [email protected]
1,557
allen-p/deleted_items/66.
FW: Chase Backtest , Attached is the file I'm proposing to send to Chase with suggested wording. To eliminate "Chase" from using data to "back-in" to pnl, we deleted all up days, and forwarded out corrected data, per files received from Jeff and Stacey. Please review and provide feedback. Additionally, if you are comfortable with data, please authorize its release. Thanks Frank "Steve Following on from our discussion concerning the back testing data, we have re-checked the underlying data with our middle office. There were some errors in your file which we have now corrected, and for clarity, included losses in the backtest file, since these are what we consider in the backtest process. I trust this helps - let us know if you need anything further Regards"
1,558
allen-p/deleted_items/67.
New Company - Online Trader Access (Stack Manager & Website) , Please populate the attached worksheets for Stack Manager & Website Access. I have added the Gas product types and a drop down for each user/product type to populate with READ, EXECUTE or NONE. For READ ONLY Website ID's, additional population is NOT necessary. Please add or remove names as necessary and return to me once complete. Let me know if you have any questions. Thank you, Stephanie Sever EnronOnline 713-853-3465
1,559
allen-p/deleted_items/69.
Request Submitted: Access Request for [email protected] , You have received this email because you are listed as a security approver. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000079824&Page=Approval to review and act upon this request. Request ID : 000000000079824 Request Create Date : 12/19/01 9:17:12 PM Requested For : [email protected] Resource Name : ICE - External Intercontinental Exchange US Natural Gas Resource Type : Applications
1,561
allen-p/deleted_items/7.
Lose 30 lbs. in Only 30 Days! , [IMAGE] NCI Marketing Web Alert [IMAGE]Phillip [IMAGE] We make losing weight easy! Our personalized diet plans will guide you to lose weight and keep it off forever! Stop wishing for a change! Your personalized diet plan includes: [IMAGE]Customized plans geared for your needs [IMAGE]A personal diet consultant to help guide you [IMAGE]Daily and weekly updates to your diet plan [IMAGE]State of the art weight loss techniques [IMAGE]Weekly chats with medical doctors [IMAGE] and much, much more... [IMAGE] Click here to get started now! [IMAGE] "Your diet program is so easy. Every time I did another diet I had to change my life completely. 7StepDiet helped slowly change my life for the better and helped me lose weight quickly." -Beth G. "Your stress relief area is wonderful. I don't know what I would do without it. Each day I just follow one your stress relief tips and I feel 100% more relaxed and confident? not to mention, I lost over 10 pounds in my first week!" -Sandra K. [IMAGE] You are receiving this special offer because you have provided permission to receive third party email communications regarding special online promotions or offers. If you do not wish to receive any further messages from Network Commerce, please click here to unsubscribe. Any third-party offers contained in this email are the sole responsibility of the offer originator. Copyright ? 2001 Network Commerce Inc.
1,562
allen-p/deleted_items/70.
1031 Land Tracts , Phillip, per our discussion see attached; - Phillip Allen 1031 land tract letter.doc
1,563
allen-p/deleted_items/71.
Shopping Ctr. and Office/Retail Complex for Sale , Hello: Integrity Realty Services has the following properties available for sale: 1) North Brooke Center--12636 Research Blvd., this neighborhood retail center is in one of Austin's most affluent areas. It is located on the south side of US Highway 183 between Duval and McNeil roads and fronts on Research Blvd. and Jollyville Road. The center is 100% brick construction and in excellent condition. Price: $5,900,000 Leasable Area: 50,331 For More Information: www.integrityrs.com/inventory/index.cfm 2) Brushy Creek Office/Retail Complex--located on the East corner of Great Oaks and Hillside Drive in the Brushy Creek Subdivision in Williamson County, Texas. It is on the North side of 620 and approximately five miles to Interstate Highway 35. Purchase Price: $975,000 Leasable Area: 12,195 Square Feet For More Information: www.integrityrs.com/inventory/index.cfm Thank you, Joe Linsalata Integrity Realty Services 205 South Commons Ford Road, No.1 Austin, Tx 78733-4004 Office: 512.327.5000 Fax: 512.327.5078 email: [email protected] large email's: [email protected] ============================================================ IF YOU WISH TO NO LONGER RECEIVE EMAILS FROM ME PLEASE REPLY TO THIS EMAIL MESSAGE WITH "REMOVE"IN THE SUBJECT LINE AND YOUR NAME AND EMAIL ADDRESS IN THE BODY OF THE MESSAGE. THANK YOU. =============================================================
1,564
allen-p/deleted_items/72.
Technical Analysis Class, Early Bird 'Til 11/05 , Learn Technical Analysis Two Full Days, December 4-5, 2001 Early Bird Discount Until October 31, 2001 [IMAGE] Marriott West Loop, Houston, Texas Energy Traders, Marketers and Buyers. This two full day class serves as both an introduction to those new to technical analysis and a refresher for experienced traders. Technicals are taught in a logical, systematic manner oriented to equip both physical and paper traders to buy low, sell high and manage risk in the real world in a logical, methodical manner. In this class you will: Ascertain when and how to take profit and cut losses. Find out how to set up a strategy by identifying probable market direction and turns as well as likely targets using chart patterns. Learn to use both traditional indicators like moving averages and stochastics, as well the state-of-the-art methods which won Cynthia Kase the coveted Market Technicians Association's "Best of the Best" award. Content Charting Basics, Types of Charts, Support and Resistance When to Buy or Sell (Entry Techniques) When to Exit Based on Signals (Momentum and Divergence) How to Exit Based on Stops (Managing Trade Risk) Chart Patterns and Forecasting Basics (Candlesticks, Elliott Wave, Flags, etc.) Statistical Hedging Early Bird Special $845.00 Two or More Early Bird $795.00 Regular: $995.00 Two or More: $895.00 *** Register Now! *** Click Here for More Information About the Presenters Who Should Attend Detailed Agenda and Schedule Other Classes Offered By Kase [IMAGE] Kase and Company also offers In House Training Classes. For more information please email us at [email protected] or call at (505) 237-1600
1,565
allen-p/deleted_items/73.
Free 2001 Cell Phones..! , <!--To put this html into an existing HTML document, you must copy the JavaScript and--> <!--paste it in a specific location within the destination HTML document. You must then copy--> <!--and paste the table in a different location.--> <html> <head> <title>IDSmailer1</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="description" content="Fireworks Splice HTML"> <!-- Fireworks 3.0 Dreamweaver 3.0 target. Created Tue Jan 09 09:15:26 GMT-0800 2001 --> </head> <body bgcolor="#ffffff" text="#004180" link="#004180" vlink="#004180" alink="#004180"> <img src="http://www.cells4free.com/sites/ids05a/[email protected]" width="1" height="1"> <!--The following section is an HTML table which reassembles the sliced image in a browser.--> <!--Copy the table section including the opening and closing table tags, and paste the data where--> <!--you want the reassembled image to appear in the destination document. --> <!-------------------------- BEGIN COPYING THE HTML HERE ----------------------------> <BR> <img src="[email protected]" width="1" height="1"> <div align="center"> <table border="0" cellpadding="0" cellspacing="0" width="600"> <!-- fwtable fwsrc="mailer1.png" fwbase="mailer1.gif" --> <tr> <!-- Shim row, height 1. --> <td><img src="shim.gif" width="193" height="1" border="0"></td> <td><img src="shim.gif" width="34" height="1" border="0"></td> <td><img src="shim.gif" width="281" height="1" border="0"></td> <td><img src="shim.gif" width="30" height="1" border="0"></td> <td><img src="shim.gif" width="62" height="1" border="0"></td> <td><img src="shim.gif" width="1" height="1" border="0"></td> </tr> <tr valign="top"><!-- row 1 --> <td><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r1_c1" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r1_c1.gif" width="193" height="94" border="0"></a></td> <td colspan="3"><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r1_c2" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r1_c2.gif" width="345" height="94" border="0"></a></td> <td><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r1_c5" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r1_c5.gif" width="62" height="94" border="0"></a></td> <td><img src="images/mail/shim.gif" width="1" height="94" border="0"></td> </tr> <tr valign="top"><!-- row 2 --> <td><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r2_c1" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r2_c1.gif" width="193" height="81" border="0"></a></td> <td colspan="3"><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r2_c2" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r2_c2.gif" width="345" height="81" border="0"></a></td> <td><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r2_c5" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r2_c5.gif" width="62" height="81" border="0"></a></td> <td><img src="images/mail/shim.gif" width="1" height="81" border="0"></td> </tr> <tr valign="top"><!-- row 3 --> <td><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r3_c1" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r3_c1.gif" width="193" height="226" border="0"></a></td> <td colspan="3"> <div align="center"> <table width="335" border="0" cellspacing="0" height="215"> <tr align="center" valign="top"> <td> <p><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><br> <font size="1">Almost everyone nowadays has a cellular phone, and<br> if you don't have one, then here's the perfect chance<br> to receive a <b><font color="#FF0000">FREE</font></b> cell phone of your own. Even if you<br> already own a cell phone, you should not pass up<br> this extraordinary offer for a friend or family member.<br> Now here's your chance to receive a great offer<br> (A <b><font color="#FF0000">FREE</font></b> cell phone with <b><font color="#FF0000">FREE</font></b> activation and delivery)<br> that includes top quality PCS Wireless Services.</font></font></p> <p><font face="Verdana, Arial, Helvetica, sans-serif" size="1">You have absolutely nothing to lose.<b><br> Click on the link below</b> for further details or</font><font size="1"><br> <font face="Verdana, Arial, Helvetica, sans-serif">to apply to IDS Cellular today!</font></font></p> </td> </tr> </table> </div> </td> <td><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r3_c5" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r3_c5.gif" width="62" height="226" border="0"></a></td> <td><img src="shim.gif" width="1" height="226" border="0"></td> </tr> <tr valign="top"><!-- row 4 --> <td rowspan="2"><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r4_c1" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r4_c1.gif" width="193" height="47" border="0"></a></td> <td rowspan="2"><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r4_c2" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r4_c2.gif" width="34" height="47" border="0"></a></td> <td><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r4_c3" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r4_c3.gif" width="281" height="28" border="0"></a></td> <td rowspan="2"><img name="mailer1_r4_c4" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r4_c4.gif" width="30" height="47" border="0"></td> <td rowspan="2"><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r4_c5" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r4_c5.gif" width="62" height="47" border="0"></a></td> <td><img src="shim.gif" width="1" height="28" border="0"></td> </tr> <tr valign="top"><!-- row 5 --> <td><a href="http://www.cells4free.com/sites/ids05a/index.asp?M=ids05a10162001&[email protected]"><img name="mailer1_r5_c3" src="http://www.cells4free.com/sites/ids05a/images/mail/mailer1_r5_c3.gif" width="281" height="19" border="0"></a></td> <td><img src="shim.gif" width="1" height="19" border="0"></td> </tr> <!-- This table was automatically created with Macromedia Fireworks 3.0 --> <!-- http://www.macromedia.com --> </table> <!--------------------------- STOP COPYING THE HTML HERE ---------------------------> <p>[ <a href="http://www.cells4free.com/remove.asp?M=ids05a10162001&[email protected]">Click here to be removed from future mailings</a> ]</p> </div> </body> </html>
1,566
allen-p/deleted_items/74.
Why the RIAA owes us all an apology , _____________________DAVID COURSEY_____________________ WHY THE RIAA OWES US ALL AN APOLOGY When recording industry types last week tried to get provisions against music swappers included in anti-terrorism legislation, they trivialized everyone involved in America's fight against terrorism--and proved themselves to be absolutely the sort of people who'd do anything for a buck. http://cgi.zdnet.com/slink?/adeskb/adt1018/2818346:8593142 # _____________________NEWS ANALYSIS_____________________ Patrick Houston WHAT'S MS' ULTIMATE GOAL FOR XP? HINT: WAY MORE THAN AN OS When you first try out Windows XP, you're reminded no less than five--count 'em, five--times to sign up for its Passport authentication service. These pleas speak of far more than Microsoft's persistence. Like what? Like how it plans to become another AOL inside an OS. PLUS: APPLE HINTS AT 'BREAKTHROUGH' DEVICE. WHAT COULD IT BE? PALM V GETS SOME BLACKBERRY JUICE http://cgi.zdnet.com/slink?/adeskb/adt1018/2818350:8593142 _____________________EXPERT ADVICE_____________________ C.C. Holland BANISH YOUR BLANK WALLS WITH HELP FROM THE WEB If you want to decorate your space but are having trouble finding the right posters or prints, just turn to your computer! C.C. shows you where to find great selections of art online (and get your picks delivered to your door). http://cgi.zdnet.com/slink?/adeskb/adt1018/2818372:8593142 =09=09=09> > > > > Janice Chen SLOW PC? NO PROBLEM! FIX UP YOUR CLUNKER FOR UNDER $50 Sure, if you have a need for speed, you could buy a new PC. But you can also streamline your older PC by tuning up your hard drive with a good utility. Janice hunts for bargains (and freebies!) that'll rev you up in no time. http://cgi.zdnet.com/slink?/adeskb/adt1018/2818264:8593142 =09=09=09> > > > > Preston Gralla TURN YOUR PC INTO A MOVIE THEATER--FOR FREE! If you like finding music online, you'll love getting movies. With the right tools, you can download, watch, and trade films and videos on your PC. Preston offers up three freebies that'll have you reaching for the popcorn. http://cgi.zdnet.com/slink?/adeskb/adt1018/2818260:8593142 =09=09=09> > > > > _____________________CRUCIAL CLICKS_____________________ Make sure you see these features on ZDNet today! MICROSOFT.COM GAFFE REVEALS PASSWORDS http://www.zdnet.com/techupdate/stories/main/0,14179,2818129,00.html ENTERPRISE E-MAIL GETS UP AND GOES http://chkpt.zdnet.com/chkpt/adeskclicks/www.zdnet.com/techupdate/stories/m= ain/0,14179,2817463,00.html CEO CRAIG BARRETT SHARES INTEL'S ITANIUM VISION http://chkpt.zdnet.com/chkpt/adeskclicks/www.zdnet.com/techupdate/stories/m= ain/0,14179,2816881,00.html ******************ELSEWHERE ON ZDNET!****************** Find the facts on firewalls and compare other security solutions. http://cgi.zdnet.com/slink?151259:8593142 Laid off? Check out over 90,000 tech job listings. http://cgi.zdnet.com/slink?151260:8593142 Take SmartPlanet's online classes for the skills you need to get ahead. http://cgi.zdnet.com/slink?151261:8593142 Get 100=12s of IT downloads FREE from TechRepublic. http://cgi.zdnet.com/slink?151262:8593142 eBusiness Update: Can dot-coms benefit from filing for bankruptcy? http://cgi.zdnet.com/slink?151263:8593142 ************************************************************* AnchorDesk comes to you free of charge as a service of ZDNet. On its companion Web site, AnchorDesk includes full details on the stories you see above, plus late-breaking news, links to in-depth information, and much more. Visit: http://www.anchordesk.com To subscribe, unsubscribe, or make changes to your subscription, please go to: http://cgi.zdnet.com/slink?130228 We are sending this news alert to the address: [email protected] Please make sure to provide this address in all your e-mail messages to us. Thanks! Copyright ) 2001 ZD Inc. ZDNet is a registered service mark of ZD Inc. ZDNet Logo is a service mark of ZD Inc. ###
1,567
allen-p/deleted_items/75.
Receive up to $500 in Grocery Savings , [IMAGE] [IMAGE] [IMAGE] [IMAGE] has been placed on hold, for you Phillip! [IMAGE] [IMAGE] Phillip, We are prepared to send you the necessary documents to claim your $500.00 in name-brand grocery coupons. Just click here to find out how to receive your grocery coupons now! I must hear from you immediately though, we are holding the coupons for you, Phillip. To ensure that you receive it right away, click here now ! Don't delete this email. Click here to find out how to receive your $500.00 in name-brand grocery coupons. This is a limited time offer, please click here now ! [IMAGE] [IMAGE] [IMAGE] [IMAGE] P.S. Click here to find out how to get your $500.00 in name-brand grocery coupons today! Only Phillip may claim these free coupons. So click here now . *In order for you to receive your $500.00 in grocery coupons, you must activate your new nationwide Toll-Free Voice Messaging Service. If you do not wish to receive future promotions, click here to unsubscribe.
1,568
allen-p/deleted_items/76.
Expense Reports Awaiting Your Approval , The following reports have been waiting for your approval for more than 4 days. Please review. Owner: Jane M Tholt Report Name: El Paso Technical Conference Days In Mgr. Queue: 13
1,569
allen-p/deleted_items/77.
Challenge friends to Planters Crunch Time Football! , [IMAGE]=09 =09 [IMAGE] Challenge friends to Planters Crunch Time Football! [IMA= GE] Play Planters Crunch Time now! =09 =09 =09 =09 Hey, phillip! It's the big game. You're down by 5 and need to s= core in 4 plays or less. Your friend's defense, however, has other plans. D= o you run a sweep? Or go for it all with the bomb? In Planters Crunch Time = Football, YOU decide. Welcome to the Internet's first-ever football game = that, via e-mail, pits you against a friend in an exciting, "do or die" mat= ch-up. You pick your plays, your friend chooses his, and both of you watch = the results unfold in graphic, play-by-play action. So, huddle up, baby -= - Planters Crunch Time is fast, fun, and FREE! PLAY PLANTERS CRUNCH TIME= FOOTBALL You received this e-mail because you registered on CBS Sports= Line.com. If you do not want to receive these special e-mail offers you can= unsubscribe by clicking this link: http://www.sportsline.com/u/newslette= rs/[email protected] or by replying to this message = with "unsubscribe" in the subject line. You are subscribed as pallen@enron.= com. Although we are sending this e-mail to you, SportsLine.com is not resp= onsible for the advertisers' content and makes no warranties or guarantees = about the products or services advertised. SportsLine.com takes your privac= y seriously. To learn more about SportsLine.com's use of personal informat= ion, please read our Privacy Statement at http://cbs.sportsline.com/u/use= rservices/privacy.htm =09 =09 =09 [IMAGE]=09
1,570
allen-p/deleted_items/79.
GMC's Bold New SUV , =09=09=09Sponsored Content=09 [IMAGE] =09[IMAGE]=09 =09[IMAGE]=09 [IMAGE] =09 Envoy: GMC's Bold New SUV The GMC Envoy is one of the nic= est surprises of the 2002 model year. It represents a comprehensive improv= ement over its Jimmy predecessor, making it one of the most competitive mi= d-sized SUVs on the market. The fact that it is still "truck-based" - whi= ch essentially refers to the full-frame construction that makes its Yukon = big brother such a beefy workhorse - does not mean that this SUV rides lik= e a truck. Quite the contrary, the Envoy is smooth and refined in a way th= at would have been unthinkable just a few years ago. Of course, the market= in which the Envoy competes has become packed with excellent choices, wit= h everyone from Acura to Mercury entering the fray. We drove an Envoy SLE = 4WD to find out how it stacks up. Full Review > > You are re= ceiving this Special Edition newsletter because you signed up to receive i= nformation and updates from Autoweb.com. In addition to our monthly newsle= tter, we occasionally send Special Edition newsletters with information on= new vehicles that we think will interest you. If you no longer wish to re= ceive Autoweb.com's monthly newsletter, please follow the instructions bel= ow. =09[IMAGE]=09 [IMAGE] Experience Envoy Now Does Envoy Measure Up= ? Check out Envoy's DVD =09 =09=09 =09
1,571
allen-p/deleted_items/8.
PHILLIP, I have got to share this with you , [IMAGE] FREE* Digital Camera! FREE* DIGITAL CAMERA VOUCHER=09 DIGITAL CAMERA TRANSFER SYSTEMS / DISTRIBUTION CENTER=09 =09 =09 PENDING FREE* GIFT: DIGITAL CAMERA ACTION: CLICK HERE EXPIRES: 1/= 14/02 ID NUMBER: 7746620019-J WE HAVE BEEN AUTHORIZED BY THE SPONSOR = OF THIS OFFER TO ALLOCATE THIS DIGITAL CAMERA PURSUANT TO THE ALL THE DETAI= LS WITHIN AND REGISTERED BY THE RECIPIENTS OF THIS DOCUMENT WITHIN THE ALLO= TED TIME PERIOD Good news PHILLIP! ! You have made the Digital Camera= Selection list. This means you get a FREE* Digital Camera and save money o= n your phone bill through Sprint's long distance plan. To receive all of = this, click here now! Get ready, PHILLIP, you will immediately receive a= ll the information you need. So sign up for Sprint's 7? AnyTimeSM Online pl= an and the FREE* Digital Camera is yours!** What are you waiting for... c= lick here now! FREE DIGITAL CAMERA SELECTION LIST PHILLIP FREE GIFT= ***CONFIDENTIAL*** ***CONFIDENTIAL*** ***CONFIDENTIAL*** = PHILLIP DIGITAL CAMERA ***CONFIDENTIAL*** ***CONFIDENTIAL*** = ***CONFIDENTIAL*** [IMAGE] [IMAGE] [IMAGE] PHILLIP-7746620019-= J [IMAGE] =09 *Requires change of state-to-state long distance carrier to Sprint, remain= ing a customer for 90 days and completion of redemption certificate sent by= mail. **Some restrictions apply, see site for details. Promotion exclude= s current Sprint customers. =09
1,572
allen-p/deleted_items/80.
Western Price Survey 10/17/01 , Attached is the midweek report. The following section of this message contains a file attachment prepared for transmission using the Internet MIME message format. If you are using Pegasus Mail, or any another MIME-compliant system, you should be able to save it or view it from within your mailer. If you cannot, please ask your system administrator for assistance. ---- File information ----------- File: Spotwed640.doc Date: 17 Oct 2001, 17:45 Size: 22528 bytes. Type: MS-Word - Spotwed640.doc
1,573
allen-p/deleted_items/81.
Your Approval is Overdue: Access Request for [email protected] , This request has been pending your approval for 5 days. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000067320&Page=Approval to review and act upon this request. Request ID : 000000000067320 Request Create Date : 10/11/01 10:24:53 AM Requested For : [email protected] Resource Name : Risk Acceptance Forms Local Admin Rights - Permanent Resource Type : Applications
1,574
allen-p/deleted_items/82.
We're looking for a Winner, Phillip! , [IMAGE] Hey, Phillip - it's trivia time! Think you know TV? Take the iWon TV Trivia Challenge - once you've answered the question, you'll be eligible to win the Ultimate Home Theatre System valued at over $7,886 (Nothing trivial about that!) [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Good luck! - The iWon Team [IMAGE] [IMAGE] No Purchase Necessary For Sweepstakes Subject To Official Rules Forgot your member name? It is: PALLEN70 Forgot your iWon password? Click here. You received this email because when you registered at iWon you agreed to receive email from us. To unsubscribe from one or more email categories, please click below. Please note, changes may take up to one week to process. If you're not signed in, you will need to do so before you can update your profile. Click here. [IMAGE]
1,575
allen-p/deleted_items/83.
Pacific Northwest action prevented shortages , =20 [IMAGE]=09 [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [I= MAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] =09 [IMAGE]= [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [I= MAGE] [IMAGE] [IMAGE] Updated: Oct. 18, 2001 [IMAGE] [IMA= GE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Pacific Northwest action= prevented shortages The Pacific Northwest, despite severe trials and trib= ulations, survived the unprecedented energy crisis that engulfed most of th= e western United States, a report by regional planning officials said. [IMA= GE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] = [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] = [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE= ] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] = [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [I= MAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] = [IMAGE] [IMAGE] [IMAGE] Deregulation of EU gas markets slow = DRI-WEFA study examines market flaws Obstacles still exist to competition = [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [= IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Cheap hydro dr= ies up Nordic countries search for new options Interconnectors could help = Customer participation forces prices down [IMAGE] [IMAGE] [IMAGE]= [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE= ] [IMAGE] [IMAGE] Is hydrogen poised for market acceleration? Fue= l cells could lead to decreased oil dependence The 'chicken and egg' infra= structure dilemma [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMA= GE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] AGA: U.S. wor= king gas in storage up 63 Bcf full story... KMP distribution up 29%; net= income increases 66% full story... Expect EPA's utility emission positio= n by year's end full story... Florida examining allowing merchant plants = full story... Plug Power cuts jobs full story... Duke backs away from B= razilian deal full story... AES drops bid for four Armenian power grids f= ull story... Williams Communications signs deal with Progress Telecom ful= l story... H2fuel technology could reduce cost of hydrogen production ful= l story... Panda Energy, Alliant Energy form JV full story... To view a= ll of today's Executive News headlines, click here [IMAGE] [= IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] Copyright ? 2001 - = Platts, All Rights Reserved [IMAGE] Market Brief Wednesday, October 17= Stocks Close Change % Change DJIA 9,232.97 (151.3) -1.61% DJ 15 Util. 314= .97 (3.6) -1.12% NASDAQ 1,646.34 (75.73) -4.40% S&P 500 1,076.28 (21.3) -1.= 94% Market Vols Close Change % Change AMEX (000) 219,425 82,234.0 59.9= 4% NASDAQ (000) 2,289,678 444,835.0 24.11% NYSE (000) 1,443,498 239,133.0 = 19.86% Commodities Close Change % Change Crude Oil (Nov) 21.79 (0.21) = -0.95% Heating Oil (Nov) 0.621 (0.006) -0.91% Nat. Gas (Henry) 2.44 (0.152)= -5.86% Propane (Nov) 40.4 (0.100) -0.25% Palo Verde (Nov) 28.00 0.75 2.75= % COB (Nov) 29.00 0.00 0.00% PJM (Nov) 27.25 0.25 0.93% Dollar US $ C= lose Change % Change Australia $ 1.948 (0.002) -0.10% Canada $ 1.568 0.0= 04 0.26% Germany Dmark 2.169 0.018 0.84% Euro 0.9034 (0.004) -0.48% Ja= pan ?en 121.30 0.000 0.00% Mexico NP 9.24 0.040 0.43% UK Pound 0.6917 = 0.0011 0.16% Foreign Indices Close Change % Change Arg MerVal 251.61 8= .46 3.48% Austr All Ord. 3,170.00 24.20 0.77% Braz Bovespa 11271.49 13.64= 0.12% Can TSE 300 6956.8 (70.09) -1.00% Germany DAX 4706.07 79.59 1.72%= HK HangSeng 10260.81 112.32 1.11% Japan Nikkei 225 10755.45 117.63 1.11= % Mexico IPC 5541.88 (0.73) -0.01% UK FTSE 100 5,203.40 120.80 2.38% = Source: Yahoo! & TradingDay.com =09 [IMAGE] [IMAGE] [IMAGE] [IM= AGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMAGE] [IMA= GE] [IMAGE] [IMAGE] [IMAGE] =09 =09 - bug_black.gif=20 - Market briefs.xls
1,576
allen-p/deleted_items/84.
MSFT Downgraded by A.G. Edwards , If you cannot read this email, please click here .=20 Earnings.com - MSFT Upgrade/Downgrade History Earnings.com =09[IMAGE] =09 =09 [IMAGE] View Today's Upgrades/Downgrades/Coverage Initiated Briefing = Microsoft Corporation (MSFT) Date Brokerage Firm Action Details 10/17= /2001 A.G. Edwards Downgraded to Hold from Buy 10/10/2001 SOUNDVIEW = TECHNOLOGY Downgraded to Buy from Strong Buy 10/04/2001 A.G. Edwards = Downgraded to Buy from Strong Buy 09/25/2001 Deutsche Bank Coverage = Initiated at Buy 09/25/2001 BERNSTEIN Coverage Initiated at Outperform= 09/24/2001 Thomas Weisel Downgraded to Buy from Strong Buy 09/20/= 2001 Dain Rauscher Wessels Coverage Initiated at Buy 07/20/2001 Salom= on Smith Barney Downgraded to Outperform from Buy 07/12/2001 Pacific = Crest Upgraded to Strong Buy from Buy 07/12/2001 CSFB Upgraded to Str= ong Buy from Buy 06/28/2001 J.P. Morgan Upgraded to Buy from Lt Buy = 06/14/2001 Prudential Securities Coverage Initiated at Buy 04/20/2001= Thomas Weisel Upgraded to Strong Buy from Mkt Perform 04/20/2001 Sal= omon Smith Barney Upgraded to Buy from Outperform 04/20/2001 Goldman S= achs Upgraded to Recomm List from Mkt Outperform 03/21/2001 Banc of Am= erica Coverage Initiated at Mkt Perform 03/09/2001 FS Van Kasper Down= graded to Buy from Strong Buy 02/08/2001 Merrill Lynch Downgraded to = Lt Accum from Lt Buy 02/02/2001 CSFB Coverage Initiated at Buy 01/= 30/2001 Pacific Crest Coverage Initiated at Buy 12/15/2000 Robertson = Stephens Downgraded to Lt Attractive from Buy 12/15/2000 Dresdner Kle= inwort Benson Downgraded to Hold from Buy 12/13/2000 Prudential Secur= ities Downgraded to Hold from Accumulate 12/08/2000 ING Barings Down= graded to Buy from Strong Buy 11/21/2000 Dresdner Kleinwort Benson Co= verage Initiated at Buy 10/24/2000 Salomon Smith Barney Coverage Initi= ated at Outperform 10/04/2000 Tucker Anthony Coverage Initiated at Buy= 10/03/2000 A.G. Edwards Upgraded to Buy from Accumulate 07/19/2000= Prudential Securities Downgraded to Accumulate from Strong Buy 07/19= /2000 S G Cowen Downgraded to Neutral from Buy 06/21/2000 CIBC World= Markets Upgraded to Buy from Hold 04/24/2000 Goldman Sachs Downgrade= d to Market Outperform from Recommended List 04/24/2000 Thomas Weisel = Downgraded to Market Perform from Buy 04/24/2000 S G Cowen Downgrade= d to Buy from Strong Buy 04/03/2000 CIBC World Markets Downgraded to = Hold from Buy Briefing.com is the leading Internet provider of live = market analysis for U.S. Stock, U.S. Bond and world FX market participants.= ? 1999-2001 Earnings.com, Inc., All rights reserved about us | contact= us | webmaster | site map privacy policy | terms of service =09
1,577
allen-p/deleted_items/85.
TECH ALERT: Apple Beats Estimates; EMC, AOL, TI Also Report , __________________________________ TECHNOLOGY ALERT from The Wall Street Journal Oct. 17, 2001 Apple Computer easily beat lowered quarterly profit expectations late Wednesday but lowered its outlook, citing the weak economy and political uncertainty. See: http://wsj.com/articles/SB1003335276102944680.htm AOL Time Warner, Texas Instruments, Siebel Systems, EMC and Handspring also posted quarterly results Wednesday. See more information at: http://interactive.wsj.com/pages/techmain.htm __________________________________ ADVERTISEMENT Receive a report on transformational strategies to create value through personalized self-service! http://www.broadvision.com/jump/wsjb.html BroadVision is the leading supplier of Enterprise Self-Service (ESS), delivering business value through business process transformation. _________________________________ SUBSCRIPTION INFORMATION TO REMOVE YOURSELF from this list, see: http://interactive.wsj.com/user-cgi-bin/searchUser.pl?action=emailalert Then uncheck the appropriate box to unsubscribe from this list. Click on the "save selections" button. For further questions, please call our customer service department at 1-800-369-2834 or 1-609-514-0870 between the hours of 8 a.m. and 9 p.m Eastern Monday-Friday or e-mail [email protected]. __________________________________ Copyright 2001 Dow Jones & Company, Inc. All Rights Reserved.
1,578
allen-p/deleted_items/86.
EB30C2 , Starting next Wednesday you have EB30C2 for your Fundies Meeting from 3:00 PM to 4:30 PM -Ina
1,579
allen-p/deleted_items/87.
Confirmation of Simulation Meeting , Phillip, This message is to confirm our meeting with you on, Friday, October 19th beginning at 9:00 am in Conference Room 13C2 3AC. Attendees from our team will include Mery Brown and Laura de la Torre. Please let me know if you have further questions at 713-345-6686. Thank you. Laura de la Torre Accenture Resources Houston, Texas Direct Dial 713.837.2133 Octel 83 / 72133 This message is for the designated recipient only and may contain privileged or confidential information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited.
1,580
allen-p/deleted_items/88.
Positions , phillip, please see attached. -randy
1,581
allen-p/deleted_items/89.
money back on your trade-ins, and great hp lease deals , If you wish to unsubscribe please CLICK HERE: http://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJE if you received this email by error, please reply to: [email protected] ================================================================ get ahead in business - quickly with hp technology life in the fast lane: win a trip to Skip Barber Racing School Register to win two 3-day passes to Skip Barber Racing School (plus $4,000 for travel expenses) when you save money and get down to business faster at our new products site. http://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJF special deals equal opportunity savings: money back on hp and non-hp trade-ins With the new HP Trade-In program, you'll get money back on your HP purchases when you trade in HP or even non-HP equipment. Enter as a "guest member" to quickly check your trade-in values. http://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJG as good as it gets: walk-away lease deals on color hp LaserJets Lease any color HP LaserJet printer at a 36-month rate and walk away penalty free in 18 months with the purchase or lease of a next-generation color HP LaserJet. http://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJH movin' on up: prime time for big savings on hp LaserJet printers Get rebates of up to $2,000 - or a free HP Jornada color pocket PC - when you purchase qualifying HP LaserJet and color LaserJet printers, or trade in qualifying printers. http://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJI one size fits all: great deals for all businesses, big or small Stop by HP's new one-stop PC, notebook, and server promotion site for big savings, lease specials, and free equipment with purchase. http://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJHJJ the odds are in your favor: get 31 chances to win a digital camera You'll get a chance to win one of ten HP PhotoSmart C500xi digital cameras when you subscribe to any one of HP's free monthly e-newsletters. Then, if you tell your friends and colleagues about HP e-newsletters, you'll get three additional sweepstakes entries for each one of them that subscribes (for up to 10 people). If ten of your friends subscribe, that's up to 30 additional chances for you to win. http://63.209.151.41/nmail/click?id=GGCCPBCJFCJBPCJIAA All offers are for a limited time only, have certain restrictions and are subject to change without notice. Please see individual special offer websites for details. ================================================================ You are receiving this message because you opted in to receive online promotions.
1,582
allen-p/deleted_items/9.
Your Weekly Movie Showtimes from Amazon.com , [IMAGE] [IMAGE]=09=09=09=09=09Showtimes starting Friday, December 28, 2001, near Z= IP code 77055 To receive showtimes for a ZIP code different from 77055 in = future e-mails, click here . =09[IMAGE]=09 [IMAGE]=09 =09 [IMAGE] Now Playing: The Royal Tenenbaums The Royal Tenenb= aums RGene Hackman, Gwyneth Paltrow Royal Tenenbaum had three children= --all geniuses. And when this absentee father returns one winter, with an = unexpected revelation, the Tenenbaums find that genius doesn't help any in= reuniting a dysfunctional family. From Wes Anderson, the director of Bott= le Rocket and Rushmore, The Royal Tenenbaums is the hilarious story of = a family of brilliant eccentrics--and how they got that way. Gene Hackman,= Anjelica Huston, Ben Stiller, Gwyneth Paltrow, Luke Wilson, Owen Wilson, = and Bill Murray star. [IMAGE]Visit our Royal Tenenbaums Store =09 =09= =09=09[IMAGE]=09 [IMAGE]=09 =09=09Showtimes for The Royal Tenenbaums AMC Studio 30 (Ame= rican Multi-Cinema) 2949 Dunvale, Houston, TX 77063, 281-319-4262 Showtime= s: 12:00pm | 2:30pm | 5:10pm | 7:40pm | 10:10pm | 12:35am =09 Viewer Favo= rites Updated Weekly cover The Lord of the Rings Harry Potter and = the Philosopher's Stone Monsters, Inc. Ocean's Eleven The Royal Te= nenbaums Go!Complete list Visit The Majestic [IMAGE] Sometimes = your life comes into focus one frame at a time. Jim Carrey stars in The M= ajestic , from the director of The Green Mile. =09 =09[IMAGE]=09 [IMAGE]=09=09=09=09=09 Films Opening This Week: Ali RWill Smith [IMAGE= ]See Showtimes and more In the Bedroom RTom Wilkinson, Sissy Spacek [= IMAGE]See Showtimes and more Kate & Leopold PG-13Meg Ryan, Hugh Jackma= n [IMAGE]See Showtimes and more =09[IMAGE]=09 [IMAGE]=09=09=09=09=09 Now Playing in Theaters near ZIP Code 77055 Please = note: These showtimes start on Friday, December 28, 2001. To receive show= times for a ZIP Code different from 77055 in future e-mails, click here .= =09[IMAGE]=09 [IMAGE]=09=09=09=09=09 | AMC Studio 30 | =09[IMAGE]=09 [IMAGE]=09=09=09=09=09 1. AMC Studio 30 (American Multi-Cinema) 2= 949 Dunvale, Houston, TX 77063, 281-319-4262 Ali RWill Smith Average= Customer Review: 5 out of 5 stars Showtimes: 11:45am | 12:50pm | 12:55pm= | 2:00pm | 3:05pm | 4:10pm | 5:20pm | 6:25pm | 7:30pm | 8:40pm | 9:45pm |= 10:50pm | 12:00am A Beautiful Mind PG-13Russell Crowe, Ed Harris A= verage Customer Review: 4.5 out of 5 stars Showtimes: 1:05pm | 2:05pm | 4= :00pm | 5:00pm | 7:00pm | 8:00pm | 9:55pm | 10:55pm | 12:45am Behind = Enemy Lines PG-13Owen Wilson, Gene Hackman Average Customer Review: 4 o= ut of 5 stars Showtimes: 12:25pm | 2:55pm | 5:20pm | 7:50pm | 10:15pm | = 12:40am Harry Potter and the Philosopher's Stone PGDaniel Radcliffe, = Rupert Grint Average Customer Review: 4.5 out of 5 stars Showtimes: 12:3= 0pm | 1:30pm | 3:50pm | 4:45pm | 7:15pm | 8:05pm | 11:20pm How High = RMethod Man, Redman Average Customer Review: 3.5 out of 5 stars Showtim= es: 12:35pm | 1:50pm | 2:50pm | 4:05pm | 5:05pm | 6:20pm | 7:20pm | 8:30p= m | 9:35pm | 10:45pm | 11:50pm | 12:55am In the Bedroom RTom Wilkins= on, Sissy Spacek Average Customer Review: 5 out of 5 stars Showtimes: 1:= 35pm | 4:35pm | 7:30pm | 10:25pm Jimmy Neutron: Boy Genius GDebi D= erryberry, Rob Paulsen Average Customer Review: 3.5 out of 5 stars Showti= mes: 12:15pm | 1:00pm | 2:20pm | 3:05pm | 4:25pm | 5:10pm | 6:30pm | 8:35= pm | 10:40pm | 12:45am Joe Somebody PGTim Allen Average Customer Rev= iew: 2.5 out of 5 stars Showtimes: 12:20pm | 1:40pm | 2:40pm | 3:55pm | = 5:10pm | 6:15pm | 7:35pm | 8:35pm | 9:55pm | 10:55pm | 12:15am Kate = & Leopold PG-13Meg Ryan, Hugh Jackman Average Customer Review: 4 out of = 5 stars Showtimes: 12:10pm | 1:35pm | 3:10pm | 4:30pm | 5:50pm | 7:10pm = | 8:30pm | 9:50pm | 11:15pm | 12:30am The Lord of the Rings: The Fellow= ship of the Ring PG-13Elijah Wood, Ian McKellen Average Customer Review:= 4.5 out of 5 stars Showtimes: 11:55am | 12:30pm | 1:45pm | 3:00pm | 3:4= 0pm | 4:15pm | 5:30pm | 6:45pm | 7:25pm | 8:00pm | 9:15pm | 10:30pm | 11:1= 0pm | 11:45pm | 12:50am The Majestic PGJim Carrey, Martin Landau A= verage Customer Review: 3.5 out of 5 stars Showtimes: 12:35pm | 2:00pm | = 3:50pm | 5:15pm | 7:05pm | 8:25pm | 10:15pm | 11:30pm Monsters, Inc. = GJohn Goodman, Billy Crystal Average Customer Review: 4.5 out of 5 stars = Showtimes: 12:30pm | 2:45pm | 5:05pm | 7:25pm Not Another Teen Mov= ie RChyler Leigh, Jaime Pressly Average Customer Review: 3 out of 5 star= s Showtimes: 12:00pm | 2:10pm | 4:20pm | 6:35pm | 8:45pm | 9:40pm | 10:5= 0pm | 11:50pm | 12:50am Ocean's Eleven PG-13George Clooney, Brad Pitt= Average Customer Review: 3.5 out of 5 stars Showtimes: 12:05pm | 1:45pm= | 3:05pm | 4:25pm | 5:40pm | 7:05pm | 8:20pm | 9:45pm | 11:00pm | 12:25am= The Royal Tenenbaums RGene Hackman, Gwyneth Paltrow Average Custo= mer Review: 5 out of 5 stars Showtimes: 12:00pm | 2:30pm | 5:10pm | 7:40= pm | 10:10pm | 12:35am The Spy Game RRobert Redford, Brad Pitt Avera= ge Customer Review: 4 out of 5 stars Showtimes: 10:20am | 12:55pm Va= nilla Sky RTom Cruise, Pen?lope Cruz Average Customer Review: 3 out of = 5 stars Showtimes: 12:25pm | 12:55pm | 2:15pm | 3:20pm | 5:15pm | 6:15pm= | 7:10pm | 8:10pm | 9:10pm | 10:05pm | 11:05pm | 12:05am =09[IMAGE]= =09 [IMAGE]=09=09=09=09=09Return to Top We hope you enjoyed receiving this= newsletter. However, if you'd like to unsubscribe, please use the link bel= ow or click the Your Account button in the top right corner of any page on= the Amazon.com Web site. Under the E-mail and Subscriptions heading, clic= k the "Manage your Weekly Movie Showtimes e-mail" link. http://www.amazo= n.com/movies-email Copyright 2001 Amazon.com, Inc. All rights reserved. = You may also change your communication preferences by clicking the followin= g link: http://www.amazon.com/communications =09[IMAGE]=09 =09=09=09=09=09=09 =09
1,583
allen-p/deleted_items/90.
Request Submitted: Access Request for [email protected] , You have received this email because you are listed as a data approver. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000069328&Page=Approval to review and act upon this request. Request ID : 000000000069328 Request Create Date : 10/18/01 1:39:02 PM Requested For : [email protected] Resource Name : EOL US NatGas Execute Website ID(Trader Access - Website) Resource Type : Applications
1,584
allen-p/deleted_items/91.
Request Submitted: Access Request for [email protected] , You have received this email because you are listed as a security approver. Please click http://itcapps.corp.enron.com/srrs/auth/emailLink.asp?ID=000000000069328&Page=Approval to review and act upon this request. Request ID : 000000000069328 Request Create Date : 10/18/01 1:39:02 PM Requested For : [email protected] Resource Name : EOL US NatGas Trader Resource Type : Applications
1,585
allen-p/deleted_items/92.
ISC - Customer Service Survey , ISC - Customer Service Survey Ticket#HD0000000650010, Password Reset : Thank you for taking the time to fill out our Customer Service Survey. Your input is crucial to our continued efforts in establishing and providing you with World Class Support. Please take a minute and complete the 5 question survey then submit it back to us when you are done. Once again, thank you for your participation. ISC Customer Care Group http://rc.enron.com/survey/survey_1.asp?id=000000000002507
1,586
allen-p/deleted_items/93.
Quarterly Managing Director Meeting - Monday, October 22 , Please plan to attend the Quarterly Managing Director Meeting scheduled for Monday, October 22. An agenda will be distributed at the meeting. Meeting details are as follows: Monday, October 22 8:30 - Noon Hyatt Regency Dogwood Room (located on the 3rd floor) A video connection will be made from the London office. Please call if you have any questions. Joannie 3-1769
1,587