Colorado Parks and Wildlife is asking for the public’s help in identifying suspects in a poaching case at the John Martin Reservoir State Wildlife Area.
Officials said someone killed two cow elk and left them to rot. State regulations require that any animal harvested must have all meat prepared for human consumption, according to CPW.
“This is poaching and it’s illegal and we want to catch the person who did this,” said Kevin Mahan, CPW district wildlife manager. “These elk were treated unethically and that is something we take very seriously.”
Someone called to report the abandoned elk carcasses on Dec. 13 in the southwest portion of Game Management Unit 146 in southeastern Colorado.
Responding CPW officers found the two dead elk west of Rule Creek, between the south bank of the reservoir and the railroad tracks. Officers also found evidence that a third elk had been shot and removed from the area.
Officers believe the elk were shot on Dec. 11 or Dec. 12.
CPW is asking the public to report anything suspicious seen that weekend or anyone who was known to have harvested elk in the area recently.
“We would like to hear information on any hunting activity observed on Dec. 11 to 12 and any vehicles seen in the area,” Mahan said. “Even the smallest detail might be significant.”
Tips can be made anonymously by contacting Operation Game Thief at 877-265-6648 or [email protected]. Tipsters can also contact Mahan at 719-940-0233.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[].,;:s@”]+(.[^()[].,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}