Today's Digital Newspaper

The Gazette

Weather Block Here



Woody Paige: Nix, Broncos achieve 8-5, but are they doomed or destined

For the Broncos, it’s a good bye with good vibrations.

Good-bye again Browns. Add another Cleveland calamity against the Broncos to The Drive, The Fumble, The Blowout and now The Three Picks & The Bo Bomb Monday night.

Jimmy and Dee Haslam, who attended the same University of Tennessee as Payton Manning and I did, do not own the Browns. The Broncos’ highest winning percentage (79) in the NFL against a team not named Cardinals (87.5) is their ownership of the Browns with a 23-7 regular season record and a sweep of the AFC Championship games of 1986-87-89 (behind John Elway).

Next up for the Broncos is a horse of a different color. The Broncos haven’t dominated the Colts, possessing a 14-12 edge in regular-season games and losing two playoff games in Indianapolis (to a guy named Manning) and one in Denver (with a guy named Manning).

This season the Broncos would kick the Colts in Mile High Stadium or the London Palladium. The Broncos don’t need Elway or Manning. They’ve got Nix. Bo already has broken Broncos’ rookie quarterback records of Elway, Mickey Slaughter, Marlin Briscoe and Drew Lock – in passes attempted and completed, passing yards, touchdowns thrown and rushed for and caught, total offensive yardage and longest scoring pass. His 94-yard connection with Marvin Mims is the fourth-longest touchdown among all QBs in Broncos history. He soon will set several more standards.

Trevor Siemian posted eight victories in his first starting season in 2016. But he had appeared briefly in one game as a rookie the prior year. If the Broncos defeat the Colts, Nix will earn his ninth.

The Broncos are 8-5 for only the 13th time since the Broncos became a pro football team in 1960. (They have been better through 13 games and certainly worse).

The first time the Broncos were 8-5 was in 1976, John Ralston’s last season as head coach and when NFL teams had 14-game schedules. The Red Miller Broncos of 1978 had the same record before finishing 10-6. The other 8-5 records were achieved by coach Dan Reeves in 1981, Wade Phillips in 1993, Mike Shanahan in 2002, 2003, 2004, 2006 and 2008, Josh McDaniels in 2009, John Fox in 2011 and Gary Kubiak in 2016.

Sean Peyton has reached the 8-5 level this season (after ending ’23 with an eighth victory in the 16th game and losing the final game for an 8-9 record).

Sign Up For Free:

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();

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=59&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/pp5%20signup%203.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/pp5%20signup%203.png);
background-size: cover;
}
}

Featured Local Savings

What happened in those dozen previous seasons when the Broncos were 8-5 in December?

Curiously, none of the teams won or even made it to the Super Bowl. The ’76 Broncos barely missed their first post-season. Two years later the Broncos fell in their first playoff road game in Pittsburgh on a field that turned into ice skating rink. Despite a 10-6 overall record in 1981, the Broncos fell short of advancing. The Phillips Screwdrivers of ’93 lost their last regular-season game to the Raiders at the Los Angeles Coliseum in overtime 33-30 and had to return there a week later for a “play-oof’’ mess that resulted in the Broncos getting thumped.

Under Shanahan, the Broncos were at 8-5 in five separate seasons of eight in the early 2000s after winning successive Super Bowls. The 2002 Broncos dropped four of their final six to miss the playoffs. Two years later they were stampeded by the Colts in the wild card round.

Although the Broncos reached the AFC Championship in 2005 (winning eight of their last nine games for a 13-3 record) they were 9-7 in ’06 and didn’t advance. The ’08 Broncos gagged the last three to wind up 8-8, and Shanahan was done.

Newbie McDaniels won his first six as a head coach, then only two more the rest of the year. No playoffs. He, too, was soon done.

However, in 2011, with Tim Tebow elevated to starter, the Broncos were 8-5 before losing three in the stretch and limping into the playoffs against the Steelers. Guess who won on the first play of overtime.

The ’16 Broncos, after the Super Bowl 50 victory, won six of their first eight and became 8-5, but they plummeted in five of their last eight and became the first of eight playoff failures.

Are the 2024 Broncos, as their 8-5 predecessors, doomed or destined?

They are a good buy.

4d763778-b4f0-11ef-87bf-03b0d23f825e

View Original Article | Split View
Tags

PREV

PREVIOUS

Woody Paige: Is trip to Super Bowl possible? Maybe, if all goes well on Broncos Vindication Tour

NIX in LIX? The quarterback feat at Super Bowl 59 is conceivable if the Broncos can go on a December-January-February Vindication Tour. The Orange most likely must defeat the Chargers, the Chiefs, the Steelers, the Ravens and perhaps the Chiefs again to get back to the Super Bowl in New Orleans. Is the third time […]

NEXT

NEXT UP

Woody Paige: Colts once again could be catalyst for Broncos playoff wishes

The Broncos should give belated thanks and Christmas greetings to the Colts. The Colts gave the Broncos seven Super Bowls, three world championships, eight AFC title games, 15 other post-season games and 193 regular-season victories. Thanks, especially, to the late Robert Irsay and Jim Irsay. Because of the generosity of the father-and-son owners the Colts […]