Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0
- Transitional//EN">
- <html xmlns:spry="http://ns.adobe.com/spry">
- <head>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js" type="text/javascript">
- </script>
- <link href="jquery_news_ticker/styles/ticker-style.css" rel="stylesheet" type="text/css"/>
- <script src="jquery_news_ticker/includes/jquery.ticker.js" type="text/javascript">
- </script>
- <link href="default.css" media="screen" rel="stylesheet" type="text/css"/>
- <link href="Mobile_default.css" media="handheld" rel="stylesheet" type="text/css"/>
- <link href="http://www.wvdnr.gov/news.xml" rel="alternate" title="WV DNR News Releases" type="application/rss+xml"/>
- <link href="http://www.wvdnr.gov/stocking.xml" rel="alternate" title="Trout Stocking" type="application/rss+xml"/>
- <link href="http://www.wvstateparks.com/events.xml" rel="alternate" title="WV State Parks Upcoming Events" type="application/rss+xml"/>
- <style type="text/css">
- <!--
- .style12 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
- .style15 {
- font-family: Arial, Helvetica, sans-serif;
- font-size: 12px;
- font-weight: bold;
- color: #FFFFFF;
- }
- .DNRHead {}
- .new {
- font-family: Arial, Helvetica, sans-serif;
- font-size: 12px;
- font-weight: bold;
- color: #F00;
- }
- .bld { font-weight: bold; }
- .new2 {
- font-weight: bold;
- color: #0C0;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 12px;
- }
- .m_title { font-size: 18px;
- font-weight: bold;
- text-align: center;
- text-indent: 0px;
- }
- .m_by { font-size: 10px;
- text-align: right;
- text-indent: 0px;
- }
- #coe2 {
- height: 1250px;
- overflow: scroll;
- }
- .coeHDR {
- font-weight: bold;
- color: #FFF;
- background-color: #933;
- }
- .coef {
- font-family: Arial, Helvetica, sans-serif;
- font-size: .8em;
- }
- .coeN {
- font-weight: normal;
- color: #000;
- background-color: #FFF;
- }
- .tnr {
- font-family: Arial, Helvetica, sans-serif;
- font-size: 12px;
- border-left: 2px solid #000;
- height: 125px;
- width: 165px;
- margin: 0px;
- padding: 0px;
- position: absolute;
- }
- .message { font-family: Arial, Helvetica, sans-serif;
- font-size: 24px;
- font-weight: bold;
- text-align: left;
- text-indent: 0px;
- }
- -->
- </style>
- <script src="Scripts/AC_RunActiveContent.js" type="text/javascript">
- </script>
- <script src="SpryAssets/SpryData.js" type="text/javascript">
- </script>
- <script src="SpryAssets/xpath.js" type="text/javascript">
- </script>
- <script type="text/javascript">
- <!--
- var ds1 = new Spry.Data.XMLDataSet("News.xml", "rss/channel/item");
- //-->
- </script>
- <script type="text/javascript">
- $(function () {
- $('#js-news').ticker({
- speed: 0.10, // The speed of the reveal
- ajaxFeed: true, // Populate jQuery News Ticker via a feed
- feedUrl: 'ticker.xml', // The URL of the feed
- // MUST BE ON THE SAME DOMAIN AS THE TICKER
- feedType: 'xml', // Currently only XML
- htmlFeed: false, // Populate jQuery News Ticker via HTML
- debugMode: false, // Show some helpful errors in the console or as alerts
- // SHOULD BE SET TO FALSE FOR PRODUCTION SITES!
- controls: true, // Whether or not to show the jQuery News Ticker controls
- titleText: '', // To remove the title set this to an empty String
- displayType: 'fade', // Animation type - current options are 'reveal' or 'fade'
- direction: 'ltr', // Ticker direction - current options are 'ltr' or 'rtl'
- pauseOnItems: 5000, // The pause on a news item before being replaced
- fadeInSpeed: 600, // Speed of fade in animation
- fadeOutSpeed: 300 // Speed of fade out animation
- });
- });
- </script>
- <script src="http://www.wvdnr.gov/includes/SpryAssets/SpryAccordion.js" type="text/javascript">
- </script>
- <script src="http://www.wvdnr.gov/includes/SpryAssets/SpryData.js" type="text/javascript">
- </script>
- <script src="http://www.wvdnr.gov/includes/SpryAssets/SpryHTMLDataSet.js" type="text/javascript">
- </script>
- <link href="http://www.wvdnr.gov/includes/SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css"/>
- <script type="text/javascript">
- <!--
- var ds4 = new Spry.Data.HTMLDataSet("http://www.wvdnr.gov/Seasons.html", "Seasons", {sortOnLoad: ["OYr","OMon","ODay"], sortOrderOnLoad: "ascending"});
- ds4.setColumnType("Season", "html");
- ds4.setColumnType("OMon", "number");
- ds4.setColumnType("ODay", "number");
- ds4.setColumnType("OYr", "number");
- ds4.setColumnType("CMon", "number");
- ds4.setColumnType("CDay", "number");
- ds4.setColumnType("CYr", "number");
- ds4.filter(FilterOutExpiredEvents);
- var gToday = (new Date).getTime();
- function FilterOutExpiredEvents(ds4, row4, rowIndex4)
- {
- var time = new Date(row4.OYr,(row4.OMon-1),row4.ODay);
- if (time > gToday)
- return row4;
- return null;
- }
- var ds2 = new Spry.Data.HTMLDataSet("http://www.wvdnr.gov/Seasons.html", "Seasons", {sortOnLoad: ["CYr","CMon","CDay"], sortOrderOnLoad: "ascending"});
- ds2.setColumnType("OMon", "number");
- ds2.setColumnType("ODay", "number");
- ds2.setColumnType("OYr", "number");
- ds2.setColumnType("CMon", "number");
- ds2.setColumnType("CDay", "number");
- ds2.setColumnType("CYr", "number");
- ds2.filter(FilterSeasons);
- var gToday2 = (new Date).getTime();
- function FilterSeasons(ds2, row2, rowIndex2)
- {
- var opn = new Date(row2.OYr,(row2.OMon-1),row2.ODay);
- var cls = new Date(row2.CYr,(row2.CMon-1),row2.CDay);
- if (opn <= gToday2 && gToday2 <= cls)
- return row2;
- return null;
- }
- var ds3 = new Spry.Data.HTMLDataSet("http://www.wvdnr.gov/cal2.html", "calelndar", {sortOnLoad: ["Year","srt_m","srt_d"], sortOrderOnLoad: "ascending"});
- ds3.setColumnType("Year", "number");
- ds3.setColumnType("Month","number");
- ds3.setColumnType("Day","number");
- ds3.setColumnType("Park_link", "html");
- ds3.setColumnType("ParkNo", "number");
- ds3.setColumnType("srt_m", "number");
- ds3.setColumnType("srt_d", "number");
- ds3.filter(FilterUpcoming);
- function FilterUpcoming(ds3, row3, rowIndex3)
- {
- var now = (new Date).getTime();
- var mdt = new Date();
- mdt.setDate(mdt.getDate()+45);
- var evt = new Date(row3.Year,(row3.Month-1),row3.Day);
- if (evt >= now && evt <= mdt)
- return row3;
- return null;
- }
- //-->
- </script>
- <script>
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
- ga('create', 'UA-18347864-1', 'wvdnr.gov');
- ga('send', 'pageview');
- </script>
- <title>
- West Virginia Division of Natural Resources
- </title>
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
- <script language="JAVASCRIPT">
- ns4 = (document.layers)? true:false
- ie4 = (document.all)? true:false
- function show(id) {
- if (ns4) document.layers[id].visibility = "show"
- else if (ie4) document.all[id].style.visibility = "visible"
- }
- function hide(id) {
- if (ns4) document.layers[id].visibility = "hide"
- else if (ie4) document.all [id].style.visibility = "hidden"
- }
- </script>
- </head>
- <body bgcolor="White" leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">
- <table cellpadding="0" cellspacing="0" height="4" leftmargin="0" marginheight="0" marginwidth="0" topmargin="0" width="100%">
- <tbody>
- <tr>
- <td bgcolor="#006633" border="0" width="775">
- <img alt=" " height="4" src="MainGraphics/GreenBar(2).gif" width="775"/>
- </td>
- <td bgcolor="#006633" border="0" width="100%">
- </td>
- </tr>
- </tbody>
- </table>
- <table border="0" cellpadding="0" cellspacing="0" height="100">
- <tbody>
- <tr>
- <td valign="Top" width="775">
- <img alt="WV DNR Logo" border="0" height="80" src="MainGraphics/MainBanner3.gif" width="655"/>
- </td>
- <td bgcolor="#000000" width="100%">
- </td>
- <td bgcolor="#000000" valign="Bottom">
- <img alt="WV DNR Logo" border="0" height="78" src="MainGraphics/dnrlogofinal2.gif" width="120"/>
- </td>
- </tr>
- <tr>
- <td height="20">
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tbody>
- <tr>
- <td bgcolor="#CCCC99" height="20" width="259">
- <font color="#000000" face="Arial, Helvetica, sans-serif" size="2">
- <strong>
- Calendar
- of Events
- </strong>
- </font>
- </td>
- <td bgcolor="#CCCC99" height="20">
- <img alt="WV DNR Logo" height="20" src="MainGraphics/Image2.jpg" width="4"/>
- </td>
- <td bgcolor="#CCCC99" height="20">
- <div align="center">
- <font color="#000000" face="Arial, Helvetica, sans-serif" size="2">
- <strong>
- Top
- News Stories
- </strong>
- </font>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td bgcolor="#CCCC99">
- </td>
- <td bgcolor="#CCCC99" valign="Bottom">
- <img alt="WV DNR Logo" height="20" src="MainGraphics/dnrlogofinal3.gif" width="120"/>
- </td>
- </tr>
- </tbody>
- </table>
- <table cellpadding="2" cellspacing="2" width="100%">
- <tbody>
- <tr>
- <td rowspan="7" valign="Top" width="250">
- <div class="Accordion" id="Accordion1" tabindex="0">
- <div class="AccordionPanel">
- <div class="AccordionPanelTab">
- In Season Now
- </div>
- <div class="AccordionPanelContent">
- <div spry:region="ds2">
- <div spry:repeat="ds2">
- <strong>
- {Season}
- </strong>
- <hr noshade="noshade"/>
- </div>
- </div>
- </div>
- </div>
- <div class="AccordionPanel">
- <div class="AccordionPanelTab">
- Upcoming Seasons
- </div>
- <div class="AccordionPanelContent">
- <div spry:region="ds4">
- <div spry:repeat="ds4">
- {OMon}/{ODay}/{OYr} - {CMon}/{CDay}/{CYr}
- <br/>
- <strong>
- {Season}
- </strong>
- <hr noshade="noshade"/>
- </div>
- </div>
- </div>
- </div>
- <div class="AccordionPanel">
- <div class="AccordionPanelTab">
- Parks Events
- </div>
- <div class="AccordionPanelContent">
- <div spry:region="ds3">
- <div spry:repeat="ds3">
- {Date}
- <br/>
- <strong>
- {Event}
- </strong>
- <br/>
- <a href="{Park_link}">
- {Park}
- </a>
- <hr noshade="noshade"/>
- </div>
- </div>
- </div>
- </div>
- </div>
- </td>
- <td align="Center" background="Template/TemplateGraphics/Image2.jpg" nowrap="" rowspan="8" valign="Top" width="1">
- </td>
- <td align="left" colspan="4" valign="top">
- <table>
- <tbody>
- <tr>
- <td valign="top">
- <ul class="js-hidden" id="js-news">
- <li class="news-item">
- <a href="#">
- This is the News Ticker.
- </a>
- </li>
- </ul>
- </td>
- <td align="center" valign="middle">
- <a href="https://www.wvhunt.com/wizard/hflw000.asp">
- <br/>
- <img alt="goWild Logo" border="0" height="75" src="Hunting/HuntingGraphics/gowildclr.jpg"/>
- <br/>
- <strong>
- Click Here To Buy your License Online
- </strong>
- </a>
- <a href="https://www.wvhunt.com/wizard/hflw000.asp">
- <br/>
- <br/>
- </a>
- </td>
- <td align="center" valign="middle">
- <a href="WF/Main.shtm">
- <img alt="Wild and Free Logo" border="0" height="100" hspace="0" src="images/WILDfreeLogo.png" vspace="0"/>
- <br/>
- <span class="style12">
- Click here for electronic publications
- </span>
- </a>
- </td>
- </tr>
- </tbody>
- </table>
- <br/>
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tbody>
- <tr>
- <td align="Right" bgcolor="#CCCC99" valign="top" width="1%">
- </td>
- <td align="Left" bgcolor="#CCCC99" valign="middle" width="49%">
- <font face="Arial" size="2">
- <strong>
- Search
- the DNR Portal . . .
- </strong>
- </font>
- </td>
- <td align="Right" bgcolor="#CCCC99" valign="top" width="1%">
- </td>
- <td align="Right" bgcolor="#CCCC99" valign="top" width="49%">
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tbody>
- <tr>
- <td>
- <div align="right">
- <!-- Spiderline Search -->
- <!-- Begin Spiderline Interface HTML -->
- <table border="0" cellpadding="0" cellspacing="0" width="200">
- <tbody>
- <tr>
- <td>
- <table border="0" cellpadding="0" cellspacing="0" width="195">
- <tbody>
- <tr>
- <td align="center">
- <form action="http://db1.spiderline.com/exec/search" method="get" style="margin-bottom:0">
- <label for="q">
- </label>
- <input id="q" name="q" size="10" type="text"/>
- <label for="a">
- </label>
- <input id="a" name="a" type="hidden" value="15908"/>
- <input type="submit" value="Find"/>
- </form>
- </td>
- </tr>
- <tr>
- <td>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <!-- End Spiderline Interface HTML -->
- <!-- Spiderline Search -->
- </div>
- </td>
- <td align="right" valign="middle" width="90">
- <div align="right">
- <a href="RSS_Feeds.shtm">
- <img alt="RSS News Feed" border="0" height="15" hspace="5" src="images/rss2.gif" width="80"/>
- </a>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- <!-- <tr>
- <td colspan="4"><p class="director_Head">Message from the DNR Director:</p>
- <p class="m_title">January is "For the Dogs"</p>
- <p class="director">West Virginia hunters like their hunting dogs. We chase rabbits, bear, and squirrels and pursue grouse, woodcock and quail with our dogs. Hunting with dogs in West Virginia is a long and deep standing tradition. </p>
- <p class="m_by"><a href="message.shtm">Read More . . .</a></p></td>
- </tr>
- -->
- <tr>
- <td bgcolor="#CCCC99" colspan="4">
- </td>
- </tr>
- <tr>
- <td align="left" rowspan="13" valign="top" width="1%">
- <img alt=" " height="1" src="../Template/TemplateGraphics/spacer.GIF" width="5"/>
- </td>
- <td align="left" valign="top" width="49%">
- <p>
- <font face="Arial" size="3">
- <strong>
- News
- :
- </strong>
- </font>
- <br/>
- <a class="bld" href="news.shtm">
- Current News
- </a>
- |
- <a href="news2013.shtm">
- 2013 News
- </a>
- |
- <a href="news2012.shtm">
- 2012 News
- </a>
- |
- <a href="news2011.shtm">
- 2011 News
- </a>
- |
- <a href="news2010.shtm">
- 2010 News
- </a>
- |
- <a href="news2009.shtm">
- 2009 News
- </a>
- |
- <a href="news2008.shtm">
- 2008 News
- </a>
- |
- <a href="news2007.shtm">
- 2007 News
- </a>
- |
- <a href="news2006.shtm">
- 2006 News
- </a>
- |
- <a href="mailto:[email protected]?Subject=News Release Email Request">
- Receive News Releases by Email
- </a>
- <br/>
- <br/>
- <a href="Agenda.shtm">
- <b>
- <font color="#FF0000" size="2">
- </font>
- </b>
- Agenda for Meetings
- </a>
- </p>
- </td>
- <td align="left" rowspan="13" valign="top" width="1%">
- <img alt=" " height="1" src="../Template/TemplateGraphics/spacer.GIF" width="10"/>
- </td>
- <td align="left" valign="top" width="49%">
- <font face="Arial" size="3">
- <p>
- <strong>
- Buy Online!
- </strong>
- <br/>
- <a href="https://www.wvhunt.com/wizard/hflw000.asp">
- Hunting License
- </a>
- <br/>
- <a href="https://www.wvfish.com/wizard/hflw000.asp">
- Fishing License
- </a>
- <br/>
- <a href="https://apps.wv.gov/rs/wonderfulWV/subscribe/Online/Process.aspx">
- Wonderful West Virginia Magazine
- </a>
- <br/>
- <a href="https://www.wvparks.com/ecom/giftcerts.cfm">
- State Park Gift Cards
- </a>
- </p>
- </font>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top">
- </td>
- <td align="left" valign="top">
- </td>
- </tr>
- <tr>
- <td align="left" valign="top">
- <font face="Arial" size="3">
- <b>
- Hunting :
- </b>
- </font>
- <font face="Arial" size="2">
- <br/>
- </font>
- <a href="hunting/hunting.shtm" title="WV DNR - Hunting Regulations">
- Main
- Page
- </a>
- |
- <a href="hunting/hunting_regs.shtm" title="WV DNR - Hunting Regulations">
- Regulations
- </a>
- |
- <a href="Hunting/Regs1415/Season_dates.pdf">
- <font face="Arial, Helvetica, sans-serif">
- 2014 Seasons and Bag Limits
- </font>
- </a>
- |
- <a href="http://www.mapwv.gov/huntfish/">
- <span class="new2">
- Hunting Map
- </span>
- </a>
- |
- <a href="https://www.wvhunt.com/wizard/hflw000.asp" title="WV DNR - goWILD">
- goWILD!
- Licensing
- </a>
- |
- <a href="hunting/licensing.shtm" title="WV DNR - License Information">
- License
- Information
- </a>
- |
- <a href="hunting/sundayhunt.shtm" title="WV DNR - Sunday Hunting">
- Sunday
- Hunting
- </a>
- |
- <a href="lenforce/education.shtm" title="WV DNR - Hunter Education">
- Hunter
- Education
- </a>
- |
- <a href="hunting/check_stations.asp" title="WV DNR - Check Stations">
- Check
- Stations
- </a>
- |
- <a href="hunting/wma.shtm" title="WV DNR - WMA">
- Wildlife
- Management Areas
- </a>
- |
- <a href="Hunting/HHH.shtm">
- Hunters Helping the Hungry
- </a>
- |
- <a href="http://lutra.dnr.state.wv.us/cwd">
- <font face="Arial, Helvetica, sans-serif">
- CWD Test Results
- </font>
- </a>
- |
- <a href="Hunting/FAQ.shtm">
- Hunting FAQ
- </a>
- <!-- | <a href="Hunting/PDFFiles/Application Deer Hunt - 2008.pdf">Stonewall Controlled Deer Hunt Application</a> -->
- |
- <a href="Hunting/controlled.shtm">
- Controlled Hunts
- </a>
- |
- <a href="WILDfirstDeerCert.pdf">
- First Deer Certificate
- </a>
- |
- <a href="wmamapproj/INDEX.shtm">
- <span class="style12">
- New WMA Topo Maps
- </span>
- </a>
- </td>
- <td align="left" valign="top">
- <font face="Arial" size="3">
- <strong>
- Special
- Opportunities :
- </strong>
- </font>
- <strong>
- Wildlife
- </strong>
- <br/>
- <a href="archery/default.shtm">
- Archery in the Schools
- </a>
- |
- <a href="hunting/bow.shtm">
- Becoming an Outdoors Woman
- </a>
- |
- <a href="wildlife/teachers.shtm">
- For
- Teachers
- </a>
- |
- <a href="wildlife/funzone.shtm">
- Kid Zone
- </a>
- |
- <a href="NHFD/Main.shtm">
- National Hunting and Fishing Day Celebration
- </a>
- |
- <a href="traditions.shtm">
- Youth Hunting and
- Fishing
- </a>
- |
- <a href="http://www.wvdnr.gov/Wildlife/WildlifeCenter.shtm">
- WV Wildlife Center
- </a>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <img alt=" " height="15" src="MainGraphics/spacer.GIF" width="1"/>
- </td>
- <td align="left" valign="top" width="49%">
- <img alt=" " height="1" src="MainGraphics/spacer.GIF" width="1"/>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <font face="Arial" size="3">
- <strong>
- Fishing :
- </strong>
- </font>
- <br/>
- <a href="fishing/fishing.shtm" title="WV DNR - Fishing">
- Main
- Page
- </a>
- |
- <a href="Fishing/Fishing_regs.shtm" title="WV DNR - Fishing Regulations">
- Regulations
- </a>
- |
- <a href="Fishing/Stocking/DailyStock.shtm" title="WV DNR - Trout Stocking">
- Trout
- Stocking
- </a>
- |
- <a href="http://www.mapwv.gov/huntfish/" target="_blank">
- <span class="new2">
- Fishing Map
- </span>
- </a>
- |
- <a href="https://www.wvhunt.com/wizard/hflw000.asp" title="WV DNR - goWILD">
- goWILD!
- Licensing
- </a>
- |
- <a href="fishing/license.shtm" title="WV DNR - License">
- License
- Information
- </a>
- |
- <a href="fishing/sport_fish.asp" title="WV DNR - Fish Identification">
- Sport
- Fish Identification
- </a>
- |
- <a href="fishing/weekly_fishreport.shtm" title="WV DNR - Fishing Report">
- Weekly
- Fishing Report
- </a>
- |
- <a href="fishing/public_access.asp" title="WV DNR - Public Access Sites">
- Public
- Fishing Areas
- </a>
- |
- <a href="http://www.wvdnr.gov/fishing/PDFFiles/Ohio_River_Management_Plan_Revised.pdf" title="http://www.wvdnr.gov/fishing/Ohio_River_Management_Plan.shtm">
- Ohio River Management Plan (PDF
- </a>
- ) |
- <a href="Fishing/First_Fish.shtm">
- First Fish Certificate
- </a>
- |
- <a href="Fishing/Invasive_Species.shtm">
- <span class="new">
- Aquatic Invasive Species
- </span>
- </a>
- |
- <a href="Fishing/Briefs.shtm">
- Fish Management Briefs
- </a>
- |
- <a href="Fishing/Dunkard.shtm">
- Dunkard Creek Restoration
- </a>
- |
- <a href="Fishing/Fish_ID.shtm">
- <span class="new">
- Sport Fish identification Posters
- </span>
- </a>
- |
- <a href="Fishing/Fish_Tagging.shtm">
- <span class="new">
- Fish Tagging Program
- </span>
- </a>
- |
- <a href="Fishing/SJ_tournaments.shtm">
- Stonewall Jackson Fishing Tournaments
- </a>
- |
- <a href="Fishing/walleye.shtm">
- Walleye Management
- </a>
- </td>
- <td align="left" valign="top" width="49%">
- <font face="Arial" size="3">
- <strong>
- Special
- Opportunities :
- </strong>
- </font>
- <strong>
- State Parks
- </strong>
- <br/>
- <a href="http://www.wvstateparks.com/community/adopt.htm">
- Adopt-A-Trail
- </a>
- |
- <a href="http://www.wvstateparks.com/Community/hiking.htm">
- Hiking
- </a>
- |
- <a href="http://www.wvstateparks.com/community/vipp.htm">
- VIPP
- </a>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- </td>
- <td align="left" valign="top" width="49%">
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <p>
- <span style="margin-top: 0; margin-bottom: 0">
- <font face="Arial" size="3">
- <b>
- Wildlife (
- <font size="2">
- General
- </font>
- ) :
- </b>
- </font>
- <br/>
- <font>
- <a href="hunting/wildlifediseases.shtm" title="WV DNR - Wildlife Diseases">
- Wildlife Diseases
- </a>
- |
- <font face="Arial, Helvetica, sans-serif" size="2">
- <strong>
- Nuisance Wildlife:
- </strong>
- <a href="Hunting/NuisBear.shtm">
- Bear
- </a>
- -
- <a href="Hunting/NuisBat.shtm">
- Bats
- </a>
- -
- <a href="Hunting/NuisWPeck.shtm">
- Woodpeckers
- </a>
- -
- <a href="Hunting/IntAppDeerCon.shtm">
- Deer
- </a>
- |
- <a href="http://icwdm.org/">
- Wildlife Damage Information
- </a>
- |
- <a href="http://wildlifecontrol.info/">
- Wildlife Control Information
- </a>
- </font>
- </font>
- </span>
- |
- <a href="Hunting/DCA.shtm">
- Wildlife Damage Control Agents
- </a>
- </p>
- </td>
- <td align="left" valign="top" width="49%">
- <font face="Arial" size="3">
- <strong>
- Publications/Programming
- :
- </strong>
- </font>
- <br/>
- <a href="http://www.wonderfulwv.com/" title="Wonderful West Virginia Magazine">
- Wonderful
- WV Magazine
- </a>
- |
- <a href="publications/publications.shtm" title="Wildlife Diversity Program">
- Wildlife
- Diversity Program Publications
- </a>
- |
- <a href="wildlife/magazine/index.shtm" title="WV Wildlife Magazine">
- WV
- Wildlife Magazine
- </a>
- |
- <a href="Hunting/Wildlife_TV/wv_wildlife_tv.shtm" title="WV Wildlife TV Show">
- WV
- Wildlife TV
- </a>
- |
- <a href="hunting/your_dnr.shtm" title="WV DNR TV Show">
- Your
- DNR TV Show
- </a>
- |
- <a href="Wildlife/WildlifeCalendar.shtm">
- Wildlife Calendars
- </a>
- |
- <a href="hunting/WildlifeResourcesReport.shtm">
- Wildlife Resources Radio Report
- </a>
- |
- <a href="admin/annual_report.shtm">
- DNR Annual Report
- </a>
- |
- <a href="wwvmagazine/Searchmagazine.shtm">
- Search
- WWV Magazine Articles
- </a>
- |
- <a href="wwvmagazine/Archive/Archive.html">
- WWV Magazine Archives
- </a>
- |
- <a href="Publications/Draft_Elk_Plan.pdf">
- Draft
- WV Elk Management Plan
- </a>
- |
- <a href="Wildflower_pilgrimage_2012.pdf">
- 51st Wildflower Pilgrimage
- </a>
- |
- <a href="Publications/Ebooks.shtm">
- <span class="new">
- Free Wildlife E-Books
- </span>
- </a>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <img alt=" " height="15" src="MainGraphics/spacer.GIF" width="1"/>
- </td>
- <td align="left" valign="top" width="49%">
- <img alt=" " src="MainGraphics/spacer.GIF"/>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <p>
- <font face="Arial" size="3">
- <strong>
- WV
- State Parks :
- </strong>
- </font>
- <br/>
- <a href="http://www.wvstateparks.com/" title="West Virginia State Parks">
- Main
- Page
- </a>
- |
- <a href="http://www.wvstateparks.com/lodging/lodge.htm" title="West Virginia State Parks Lodging">
- Lodges
- and Resorts
- </a>
- |
- <a href="http://www.wvstateparks.com/lodging/cabins.html" title="West Virginia State Parks Cabins">
- Cabins
- </a>
- |
- <a href="http://www.wvstateparks.com/lodging/camping.htm" title="West Virginia State Parks Camping">
- Camping
- </a>
- |
- <a href="http://www.wvstateparks.com/packages/golf.htm" title="West Virginia State Parks Golf Packages">
- Golf
- Packages
- </a>
- |
- <a href="http://www.wvstateparks.com/calendar.html" title="West Virginia State Parks Calendar of Events">
- Calendar
- of Events
- </a>
- |
- <a href="http://www.wvstateparks.com/Conferences/index.htm" title="West Virginia State Parks Conference Planner">
- Conference
- Planner
- </a>
- |
- <a href="news.shtm" title="West Virginia State Parks News">
- Parks
- News
- </a>
- |
- <a href="http://www.wvstateparks.com/tours/index.htm" title="West Virginia State Parks Virtual Tours">
- Virtual
- Tours
- </a>
- |
- <b>
- <font color="#FF0000" size="2">
- </font>
- </b>
- <a href="map.asp">
- Interactive Park Map
- </a>
- </p>
- </td>
- <td align="left" valign="top" width="49%">
- <p style="margin-top: 0; margin-bottom: 0">
- <font face="Arial" size="3">
- <b>
- Wildlife Diversity :
- </b>
- </font>
- <br/>
- <font>
- <a href="wildlife/wdpintro.shtm" title="WV DNR - Wildlife">
- Main
- Page
- </a>
- |
- <a href="wildlife/endangered.shtm" title="WV DNR - Endangered Species">
- Rare,
- Threatened and Endangered Species
- </a>
- |
- <a href="wildlife/scollectpermit.shtm" title="WV DNR - Scientific Permit">
- Scientific
- Collecting Permit
- </a>
- |
- <a href="Mussels/Main.shtm">
- WV Mussel Survey Protocol
- </a>
- |
- <a href="wildlife/invasivespecies.shtm" title="WV DNR - Invasive Species">
- Exotic/Invasive
- Species
- </a>
- |
- <a href="wildlife/birdwv.shtm" title="WV DNR - Bird Watching">
- Birding
- in WV
- </a>
- |
- <a href="wildlife/data.shtm" title="WV DNR - Data Request">
- Data
- Requests
- </a>
- |
- <a href="wildlife/landscape.shtm" title="WV DNR - Landscape">
- Landscaping for Wildlife
- </a>
- |
- <a href="wvmn/index.shtm">
- Master Naturalist Program
- </a>
- |
- <a href="Wildlife/One_page_plants.shtm">
- One Page Plant Field Guides
- </a>
- </font>
- |
- <a href="Wildlife/WVBBA Spring Newsletter 2013.pdf">
- <span class="new">
- New Breeding Bird Atlas Newsletter
- </span>
- </a>
- |
- <a href="Publications/Amphibians/index.html">
- Reptile and Amphibian Regulations
- </a>
- |
- <a href="Wildlife/Action_Plan.shtm">
- State Wildlife Action Plan
- </a>
- </p>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <img alt=" " height="15" src="MainGraphics/spacer.GIF" width="1"/>
- </td>
- <td align="left" valign="top" width="49%">
- <img alt=" " height="1" src="MainGraphics/spacer.GIF" width="1"/>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <font face="Arial" size="3">
- <strong>
- Law Enforcement :
- </strong>
- </font>
- <br/>
- <!--<a href='lenforce/law.shtm' title="WV DNR - Law Enforcement">Main Page</a> | <a href='lenforce/boating.shtm' title="WV DNR - Boating">Boating</a> | <a href='lenforce/employment.shtm' title="WV DNR - Law Enforcement Employment">Employment</a> | <a href='lenforce/education.shtm' title="WV DNR - Hunter Education">Hunter Education</a> | <a href="LEnforce/White/RiverMgt/default.shtm">Whitewater Rafting</a> | <a href="https://whitewater.wvdnr.gov/">BETA Whitewater Rafting</a> | <a href="LEnforce/Huntered/Classes.htm">Hunter Ed Class Search</a> | <a href="LEnforce/Boater_Ed/Classes.htm">Boater Ed Class Search</a> | <a href="LEnforce/Poachers.shtm">Report Poachers On-line</a></Td> -->
- <a href="lenforce/law.shtm" title="WV DNR - Law Enforcement">
- Main Page
- </a>
- |
- <a href="lenforce/boating.shtm" title="WV DNR - Boating">
- Boating
- </a>
- |
- <a href="lenforce/employment.shtm" title="WV DNR - Law Enforcement Employment">
- Employment
- </a>
- |
- <a href="lenforce/education.shtm" title="WV DNR - Hunter Education">
- Hunter Education
- </a>
- |
- <a href="https://whitewater.wvdnr.gov/">
- Whitewater Rafting
- </a>
- |
- <a href="LEnforce/Huntered/Classes.htm">
- Hunter Ed Class Search
- </a>
- |
- <a href="LEnforce/Boater_Ed/Classes.htm">
- Boater Ed Class Search
- </a>
- |
- <a href="LEnforce/Poachers.shtm">
- Report Poachers On-line
- </a>
- |
- <a href="LEnforce/Guide.shtm">
- Outfitter & Guide
- </a>
- </td>
- <td align="left" valign="top" width="49%">
- <font face="Arial" size="3">
- <strong>
- Disability
- Services :
- </strong>
- </font>
- <br/>
- <a href="disabilityservices/disabled_fishing.shtm" title="WV DNR - Disabled Fishing">
- Fishing
- Sites
- </a>
- |
- <a href="DisabilityServices/disabled_hunting.shtm" title="WV DNR - Disabled Hunting">
- Hunting
- Sites
- </a>
- |
- <a href="disabilityservices/disabled_licenses.shtm" title="WV DNR - Disabled Licenses">
- License
- </a>
- |
- <a href="DisabilityServices/disabled_faq.shtm">
- FAQ
- </a>
- |
- <a href="Hunting/PDFFiles/Class_Q_Program_Brochure_final.pdf">
- Class Q/QQ Brochure (PDF)
- </a>
- |
- <a href="Hunting/ClassQ-QQ.shtm">
- Class Q/QQ Brochure (HTML)
- </a>
- |
- <a href="DisabilityServices/DDFLAPPS.pdf">
- Developmentally Disabled Resident Fishing License (DDRFL) Application
- </a>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <img alt=" " height="15" src="MainGraphics/spacer.GIF" width="1"/>
- </td>
- <td align="left" valign="top" width="49%">
- <img alt=" " height="1" src="MainGraphics/spacer.GIF" width="1"/>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="49%">
- <font face="Arial" size="3">
- <strong>
- Administration
- :
- </strong>
- </font>
- <br/>
- <a href="admin/default.shtm" title="WV DNR - Administration">
- Main
- Page
- </a>
- |
- <a href="admin/payroll.shtm" title="WV DNR - Payroll">
- Payroll
- & Employee Benefits
- </a>
- |
- <a href="admin/personnel.shtm" title="WV DNR - Personnel">
- Personnel
- </a>
- </td>
- <td align="left" valign="top" width="49%">
- <p style="margin-top: 0; margin-bottom: 0">
- <font face="Arial" size="3">
- <strong>
- Office of Land and Streams:
- </strong>
- </font>
- <br/>
- <a href="REM/default.shtm" title="WV DNR - Real Estate Management">
- Main Page
- </a>
- |
- <a href="REM/PLC.shtm" title="WV DNR - Public Land Corporation">
- Stream Activity Application
- </a>
- </p>
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="1%">
- </td>
- <td align="left" valign="top" width="49%">
- </td>
- <td align="left" valign="top" width="1%">
- </td>
- <td align="left" valign="top" width="49%">
- </td>
- </tr>
- <tr>
- <td align="left" valign="top" width="1%">
- </td>
- <td align="left" valign="top" width="49%">
- <font face="Arial" size="3">
- <strong>
- Other :
- <br/>
- </strong>
- <a href="Wildlife/PDFFiles/wvwcap.pdf">
- WV Wildlife Conservation Action Plan (76MB PDF)
- </a>
- |
- <a href="cabwaylingo.pdf">
- Affidavit of Publication–Wilson Coal #A-47 WO (PDF)
- </a>
- |
- <a href="Kanawha State Forest Maintenance Hardy 35.pdf">
- Kanawha State Forest: EQT: Road Maintenance_Hardy 35
- </a>
- </font>
- </td>
- <td align="left" valign="top" width="1%">
- </td>
- <td align="left" valign="top" width="49%">
- </td>
- </tr>
- </tbody>
- </table>
- <div align="center">
- <p>
- </p>
- <h3>
- </h3>
- </div>
- </td>
- </tr>
- <!-- <PARAM NAME=DEFTARGET VALUE="fmain"> -->
- </tbody>
- </table>
- <img alt=" " height="1" src="../Template/TemplateGraphics/spacer.GIF" width="5"/>
- <table cellpadding="0" cellspacing="0" height="62" width="100%">
- <tbody>
- <tr>
- <th colspan="10" height="20">
- <hr color="632910" size="1" width="95%"/>
- </th>
- </tr>
- <tr>
- <th width="33%">
- <font face="Arial, Helvetica, sans-serif" size="1">
- Earl Ray Tomblin, Governor
- </font>
- </th>
- <th width="34%">
- <p style="margin-top: 0; margin-bottom: 0">
- <font face="Arial, Helvetica, sans-serif" size="1">
- Keith Burdette, Secretary,
- </font>
- </p>
- <p style="margin-top: 0; margin-bottom: 0;">
- <font face="Arial, Helvetica, sans-serif" size="1">
- Department
- of Commerce
- </font>
- </p>
- </th>
- <th width="33%">
- <font face="Arial, Helvetica, sans-serif" size="1">
- Director
- Frank Jezioro
- </font>
- </th>
- </tr>
- <tr>
- <td colspan="3" height="20">
- <div align="center">
- <p style="margin-bottom: 0;">
- <br/>
- <font face="Arial, Helvetica, sans-serif">
- <a href="http://www.wv.gov">
- WV State Home Page
- </a>
- |
- <a href="http://www.boc.state.wv.us">
- Department of Commerce
- </a>
- |
- <a href="http://www.wvtourism.com">
- Division of Tourism
- </a>
- |
- <a href="http://www.wvforestry.com">
- Division of Forestry
- </a>
- <br/>
- <a href="http://www.labor.state.wv.us">
- Division of Labor
- </a>
- |
- <a href="http://www.wvdo.org">
- Development Office
- </a>
- </font>
- |
- <a href="http://www.wvgs.wvnet.edu">
- WV Geological and Economic Survey
- </a>
- |
- <a href="http://wvgis.wvu.edu">
- GIS Coordinators Office
- </a>
- <br/>
- <font face="Arial, Helvetica, sans-serif">
- <a href="http://www.wvminesafety.org">
- Office of Miners Health, Safety and Training
- </a>
- |
- <a href="http://www.wvwda.org">
- Water Development Authority
- </a>
- </font>
- <br/>
- <br/>
- </p>
- <p style="margin-top: 0; margin-bottom: 0;">
- <a href="Privacy.shtm" title="Privacy Statement ">
- Privacy
- Statement
- </a>
- |
- <a href="contact.shtm" title="Contact Us">
- Division
- Contacts
- </a>
- <br/>
- <a href="mailto:[email protected]" title="Send email to Webmaster">
- Contact Webmaster
- </a>
- <br/>
- <a href="http://www.wvdnr.gov/" title="West Virginia Division of Natural Resources">
- Š
- 2011 West Virginia Division of Natural Resources
- </a>
- </p>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <script type="text/javascript">
- <!--
- var Accordion1 = new Spry.Widget.Accordion("Accordion1");
- //-->
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement