The Weld County Sheriff’s Office is asking for the public’s help in identifying two thieves who are suspected of stealing a vehicle from a home.
The car, a gray 2006 GMC Yukon Denali, was stolen between Sunday night and Monday morning from outside of the owner’s home in the 13900 block of Weld County Road 19, west of Platteville.
Deputies said the owner’s daughter parked the car outside of the home at 5 p.m. Sunday and left her credit card inside.
On Monday, the credit card was used to purchase cigarettes and lighters at a Juggy’s Food Mart in Greeley.
The credit card was used again later that day to buy a five-gallon pail of kerosene from a Greeley Cenex gas station.
Using witness statements and security camera footage from the stores, deputies compiled a description of the female suspect. There is not yet a physical description of the male suspect.
The woman is described as 5-feoo-5 with a medium build and light brown hair with purple streaks.
Anyone with information about the suspects or the location of the stolen vehicle is asked to call 970-356-4000 and ask to speak with Deputy Alex Fischer.
Tips can also be submitted anonymously through Northern Colorado Crime Stoppers at 1-800-222-8477 and crimeshurt.com. Tipsters may be eligible for a $2,000 reward.
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;
}
}