The Broomfield Police Department is investigating two robberies that occurred Friday morning.
Police say they were dispatched to the First Bank near 16th Avenue and Zuni Street about 10:15 a.m. Friday on a report of an ongoing robbery.
Authorities set up a perimeter of the area, and Westlake Middle School and Legacy High School were put on secure — formerly known as lockdown — to survey the area for the suspect, said Rachel Welte, a police spokeswoman.
About 15 to 20 minutes later, police received a call about another bank robbery at Key Bank at 120th Avenue and Lamar Street.
Broomfield’s Public Library and Health and Human Services building were put on lockdown for a short time while authorities surveyed the area.
Police say the suspect, described as white man in his 20s, presented a teller with a note demanding money, and fled with an undisclosed amount of money in a gray Acura sedan.
He was last seen wearing a purple shirt and gray suit coat.
Investigators are trying to determine whether the suspect committed similar bank robberies in recent weeks.
On Jan. 29 in Denver and on Feb. 2 in Arvada, a white man robbed two banks by using a demand note.
“We’re looking into that because there have been similar bank robberies in other areas,” said Welte. “I can’t confirm anything right now.”
Police are asking anyone near the banks with surveillance footage is asked to call police.
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;
}
}