þÿ<html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta name="GENERATOR" content="Microsoft FrontPage 6.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=unicodeFFFE"> <title>2008 ERS Report</title> <meta name="Microsoft Border" content="b, default"> </head> <body><!--msnavigation--><table dir="ltr" border="0" cellpadding="0" cellspacing="0" width="100%"><tr><!--msnavigation--><td valign="top"> <div align="center"> <center> <table border="0" cellPadding="0" cellSpacing="0" width="795" summary=" This table is for layout. It holds a banner and navigational links " style="border-collapse: collapse; text-align: left; word-spacing: 0; text-indent: 0; line-height: 100%; margin: 0" bordercolor="#111111" height="179"> <tbody> <tr> <td width="571" style="word-spacing: 0; font-family: Georgia; font-size: 10pt; margin: 0" valign="bottom" height="20" colspan="2"> <a target="_self" href="http://www.enr.state.nc.us/"> <img border="0" src="images/denr_bar.gif" width="400" height="20"></a></td> <td width="224" align="right" valign="bottom" style="font-family: Georgia; text-align: right; word-spacing: 0; font-size: 10pt; margin: 0" height="20" colspan="2"> <p align="right"><span lang="en-us"><font size="2" face="Georgia"> <a name="Top of Page"></a><SCRIPT LANGUAGE=Javascript> <!-- /* Java Script Calendar is a small script for web pages which displays current Day of the week, Month, Date and Year along with Holidays notification. Just like this working demo below. It will work with Netscape 2++, Microsoft 3++ and Opera 3++ web browsers. Tuesday, November 24, 1998 About 70 holidays from all over the world are displayed by Calendar (if you know other ones, let me know, I will add them). It even calculates Easter Sunday date! To see how it works change the date on your computer to January, 1, for example and re-load the page. Installation is very simple. Just copy the script below, everything between SCRIPT and SCRIPT tags (including tags themselves) and paste in the place you want it to appear on your page. You can customize the way it looks by changing document.write function arguments just after month names definitions. Java Script Calendar is free without any limitations. Copyright © Eugene Vassiltsov. But please, let me know if you will use it. */ calendar = new Date(); day = calendar.getDay(); month = calendar.getMonth(); date = calendar.getDate(); year = calendar.getYear(); if (year < 1000) year+=1900 cent = parseInt(year/100); g = year % 19; k = parseInt((cent - 17)/25); i = (cent - parseInt(cent/4) - parseInt((cent - k)/3) + 19*g + 15) % 30; i = i - parseInt(i/28)*(1 - parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11)); j = (year + parseInt(year/4) + i + 2 - cent + parseInt(cent/4)) % 7; l = i - j; emonth = 3 + parseInt((l + 40)/44); edate = l + 28 - 31*parseInt((emonth/4)); pdate = (edate - 7); emonth--; var dayname = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"); var monthname = new Array ("January","February","March","April","May","June","July","August","September","October","November","December" ); document.write("<font face=Georgia size=2>"); document.write(dayname[day] + ", "); document.write(monthname[month] + " "); if (date< 10) document.write("0" + date + ", "); else document.write(date + ", "); document.write(year + " <font color=FF0000>"); document.write("<br>"); // Easter if ((month == emonth) && (date == edate)) document.write("Easter Sunday"); if ((month == emonth) && (date == pdate)) document.write("Palm Sunday<br>Passover"); // January if ((month == 0) && (date == 1)) document.write("New Year's Day"); if ((month == 0) && (day == 1) && (date > 14) && (date< 22)) document.write("Martin Luther King's Birthday"); // February if ((month == 1) && (date == 2)) document.write("Groundhog Day"); if ((month == 1) && (date== 12)) document.write("Lincoln's Birthday"); if((month == 1) && (date == 14)) document.write("St. Valentine's Day"); if ((month == 1) && (date == 22)) document.write("Washington's Birthday"); if ((month == 1) && (date == 29)) document.write("Leap Day"); // March if ((month == 2) && (date == 17)) document.write("St. Patrick's Day"); // April if ((month == 3) && (date == 1)) document.write("April Fools' Day <br>"); if ((month == 3) && (date == 15) && (day != 0)) document.write("Income Tax Day, "); if ((month == 3) && (date == 16) && (day == 1)) document.write("Income Tax Day"); if ((month == 3) && (date == 22)) document.write("Earth Day"); if ((month == 3) && (day == 0) && (date > 0) && (date< 8)) document.write("Daylight Savings Time Begins"); // May if ((month == 4) && (date == 5)) document.write("Cinco de Mayo (Mexico)"); if ((month == 4) && (day == 0) && (date > 7) && (date< 16)) document.write("Mother's Day"); if ((month == 4) && (day == 1) && (date > 24)) document.write("Memorial Day"); // June if ((month == 5) && (date == 6)) document.write("D-Day"); if ((month == 5) && (date == 14)) document.write("FlagDay"); if ((month == 5) && (date == 21)) document.write("Summer Solstice"); if ((month == 5) && (day == 0) && (date > 15) && (date< 24)) document.write("Father's Day"); // July if ((month == 6) && (date == 4)) document.write("Independence Day"); // August // September if ((month == 8) && (day== 1)&& (date > 0) && (date< 8)) document.write("Labor Day"); // October if ((month == 9) && (day == 1) && (date > 7) && (date< 16)) document.write("Columbus Day"); if ((month == 9) && (day == 0) && (date > 24) && (date< 31)) document.write("Daylight Savings Time Ends"); if ((month == 9) && (day == 0) && (date == 31)) document.write("Daylight Savings Time Ends<BR>"); if ((month == 9) && (date == 24)) document.write("United Nations Day"); if ((month == 9) && (date == 31)) document.write("Halloween"); // November if ((month == 10) && (date == 1)) document.write("All Saints Day"); if ((month == 10) && (date == 2)) document.write("All Souls Day"); if ((month == 10) && (date == 11)) document.write("Veteran's Day"); if ((month == 10) && (day == 4) && (date > 23) && (date< 30)) document.write("Thanksgiving"); if ((month == 10) && (date == 30) && (day == 4)) document.write("Thanksgiving"); // December if ((month == 11) && (date == 21)) document.write("Winter Solstice"); if ((month == 11) && (date == 24)) document.write("Christmas Eve"); if ((month == 11) && (date == 25)) document.write("Christmas"); if ((month == 11) && (date == 31)) document.write("New Year's Eve"); document.write("<br></font>"); //--> </SCRIPT> </font> </span></td> </tr> <tr> <td style="border-top: 6px none rgb(21,24,153); border-bottom: 9px none rgb(0,0,128); align=" width="795" colspan="4" height="163" bgcolor="#9BFFD8"> <p align="left"> <img border="0" src="images/2008_ERS_Report_Banner.jpg" width="795" height="163"></td> </tr> <tr> <td class="nav" width="795" bgcolor="#FFFFFF" colspan="4" height="1"> <p style="text-align: center"></td> </tr> <tr> <td vAlign="middle" width="795" colspan="4" bgcolor="#9BFFD8" height="36"> <p style="text-align: center; margin-top:4; margin-bottom:4"> <a target="_self" href="http://www.ncradiation.net" style="text-decoration: none"><b> <font face="Univers Condensed" size="6" color="#000000">RPS</font></b></a><b><font face="Univers Condensed" size="6"><font color="#FF0000"><font color="#000000"><a style="text-decoration: none" href="http://www.ncradiation.net"><font color="#000000"> Home</font></a><a style="text-decoration: none" href="../home.htm"><font color="#000000"> </font></a>&nbsp;</font><a style="text-decoration: none" href="../home.htm"><font color="#000000">&nbsp;</font></a><font color="#000000"><a target="_self" href="nfers.htm" style="text-decoration: none"><font color="#000000">ERM Home</font></a> </font></font>&nbsp; <a style="text-decoration: none" href="Documents.htm"><font color="#000000">Documents</font></a>&nbsp;&nbsp; <a target="_self" href="http://www.ncradon.org/" style="text-decoration: none"> <font color="#000000">Radon</font></a>&nbsp;&nbsp; <a style="text-decoration: none" href="staff_directory.htm"> <font color="#111111">Staff</font></a></font></b></td> </tr> <tr> <td width="795" colspan="4" bgcolor="#FFFFFF" height="46" valign="middle"> <p style="line-height: 150%; text-align:center"><font face="Arial"><b> <font size="5">2008 Environmental Radiation Surveillance Report</font></b></font></td> </tr> <tr> <td width="795" colspan="4" bgcolor="#FFFFFF" height="48"> <b><font face="Arial"><br> Note: The 2008 ERS report is presented below by section.&nbsp; Please click on the appropriate icon&nbsp; to open the desired file format, Adobe Acrobat (pdf ) or Windows Word 2003 (doc). Active sections are in <font color="#0000FF">blue.</font></font></b><p><b><font face="Arial">To access the report in Adobe Acrobat format, you will need to obtain and install the free Adobe Acrobat Reader.&nbsp; Please click the picture below to install the latest Acrobat Reader.</font></b></p> <p style="text-align: center"> <a target="_self" href="http://www.adobe.com/products/acrobat/readstep.html"> <img border="0" src="images/getacro.gif" width="88" height="31"></a></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="38" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="38"> <u><b><font face="Arial" size="4">Section</font></b></u></td> <td width="111" bgcolor="#FFFFFF" height="38" style="text-align: center" valign="middle"> <u><b>.pdf</b></u></td> <td width="112" bgcolor="#FFFFFF" height="38" style="text-align: center"> <u><b>.doc</b></u></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="38" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="38"> <b><font face="Arial" size="4" color="#0000FF">Title Page &amp; Table of Contents</font></b></td> <td width="111" bgcolor="#FFFFFF" height="38" style="text-align: center" valign="middle"> <a href="docs_data/2008_TITLE_PAGE_AND_TABLE_OF_CONTENTS.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a><font size="1">(52 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="38" style="text-align: center"> <a href="docs_data/2008_TITLE_PAGE_AND_TABLE_OF_CONTENTS.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a><font size="1">(119 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="38" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="38"> <p><b><font face="Arial" size="4" color="#0000FF">Executive Summary</font></b></p> </td> <td width="111" bgcolor="#FFFFFF" height="38" style="text-align: center" valign="middle"> <a href="docs_data/2008_Executive_Summary.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a><font size="1">(217 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="38" style="text-align: center"> <a href="docs_data/2008_Executive_Summary.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a><font size="1">(354 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="38" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="38"> <b><font face="Arial" size="4" color="#0000FF">Brunswick Nuclear Plant</font></b></td> <td width="111" bgcolor="#FFFFFF" height="38" style="text-align: center" valign="middle"> <a href="docs_data/2008_Brunswick_Section.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a><font size="1">(759 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="38" style="text-align: center"> <a href="docs_data/2008_Brunswick_Section.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a><font size="1">(4353 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="38" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="38"> <b><font face="Arial" size="4" color="#0000FF">Harris Nuclear Plant</font></b></td> <td width="111" bgcolor="#FFFFFF" height="38" style="text-align: center" valign="middle"> <a href="docs_data/2008_Harris_Section.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a><font size="1">(867 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="38" style="text-align: center"> <a href="docs_data/2008_Harris_Section.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a><font size="1">(4960 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="38" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="38"> <b><font face="Arial" size="4" color="#0000FF">McGuire Nuclear Station</font></b></td> <td width="111" bgcolor="#FFFFFF" height="38" style="text-align: center" valign="middle"> <a target="_self" href="docs_data/2008_McGuire_Section.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a> <font size="1">(913 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="38" style="text-align: center"> <a target="_self" href="docs_data/2008_McGuire_Section.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a> <font size="1">(4726 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="39" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="39"> <b><font face="Arial" size="4" color="#0000FF">Global Nuclear Fuels</font></b></td> <td width="111" bgcolor="#FFFFFF" height="39" style="text-align: center" valign="middle"> <a href="docs_data/2008_GE-GNF_Section.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a><font size="1">(740 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="39" style="text-align: center"> <a href="docs_data/2008_GE-GNF_Section.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a><font size="1">(2856 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="39" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="39"> <b><font face="Arial" size="4" color="#0000FF">NC Statewide Environmental Surveillance Network</font></b></td> <td width="111" bgcolor="#FFFFFF" height="39" style="text-align: center" valign="middle"> <a href="docs_data/2008_Statewide_Section.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a><font size="1">(267 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="39" style="text-align: center"> <a href="docs_data/2008_Statewide_Section.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a><font size="1">(582 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="39" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="39"> <b><font face="Arial" size="4" color="#0000FF">Catawba Nuclear Station</font></b></td> <td width="111" bgcolor="#FFFFFF" height="39" style="text-align: center" valign="middle"> <a target="_self" href="docs_data/2008_Catawba_Section.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a> <font size="1">(388 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="39" style="text-align: center"> <a target="_self" href="docs_data/2008_Catawba_Section.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a> <font size="1">(1065 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="39" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="39"> <b><font face="Arial" size="4" color="#0000FF">PCS Phosphate</font></b></td> <td width="111" bgcolor="#FFFFFF" height="39" style="text-align: center" valign="middle"> <a href="docs_data/2008_PCS_Phosphate_Section.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a><font size="1">(49 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="39" style="text-align: center"> <a href="docs_data/2008_PCS_Phosphate_Section.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a><font size="1">(80 kb)</font></td> </tr> <tr> <td width="18" bgcolor="#FFFFFF" height="39" valign="middle"> &nbsp;</td> <td width="553" bgcolor="#FFFFFF" height="39"> <b><font face="Arial" size="4" color="#0000FF">Appendices</font></b></td> <td width="111" bgcolor="#FFFFFF" height="39" style="text-align: center" valign="middle"> <a href="docs_data/2008_Appendices.pdf"> <img border="0" src="images/pdf.gif" width="24" height="24"></a><font size="1">(354 kb)</font></td> <td width="112" bgcolor="#FFFFFF" height="39" style="text-align: center"> <a href="docs_data/2008_Appendices.doc"> <img border="0" src="images/word.gif" width="24" height="23"></a><font size="1">(217 kb)</font></td> </tr> <tr> <td width="795" colspan="4" bgcolor="#FFFFFF" height="83"> <font face="Arial"><br> Please contact the <a target="_self" href="mailto:chris.fidalgo@ncmail.net?subject=ERM Website Feedback">ERM webmaster</a> with any questions, concerns, or suggestions about this website.</font><p><strong> <small><small><font face="Georgia"><em> Last Updated:&nbsp;&nbsp;<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan -->12 April 2010<!--webbot bot="Timestamp" i-checksum="28265" endspan --></em></font></small></small></strong> <br> &nbsp;</td> </tr> <tr> <td width="795" colspan="4" bgcolor="#FFFFFF" height="19"> <p style="text-align: center"><font size="2" face="Arial"> <a target="_self" href="http://www.ncradiation.net">North Carolina Radiation Protection</a>&nbsp; 1645 Mail Service Center, Raleigh, NC 27699-1645&nbsp;<b>.</b><br> &nbsp;Voice:&nbsp;(919)-571-4141&nbsp;<b>.</b>&nbsp;Fax: (919) 571-4148</font></td> </tr> </table> </center> </div> <!--msnavigation--></td></tr><!--msnavigation--></table><!--msnavigation--><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td> <p>&nbsp;</p> <p>&nbsp;</p> </td></tr><!--msnavigation--></table></body> </html>