// This JS function is called by the Video Cloud Player when
// it encounters Companion Ads in a VAST 2.0 response
function bcsyncroadblock(adXML){
var companionAds = getXMLDoc(adXML);
//Get the Companion snippet
var expandedBannerAd = companionAds.getElementsByTagName('Companion')[0];
var collapsedBannerAd = companionAds.getElementsByTagName('Companion')[1];
// Get the banner creative URL
var expandedBannerAdSnippet = expandedBannerAd.getElementsByTagName('StaticResource')[0].firstChild.nodeValue;
var collapsedBannerAdSnippet = collapsedBannerAd.getElementsByTagName('StaticResource')[0].firstChild.nodeValue;
// Get clickthrough information for the banners from the StaticResource node
var expandedBannerClickURL = expandedBannerAd.getElementsByTagName('CompanionClickThrough')[0].firstChild.nodeValue;
var collapsedBannerClickURL = collapsedBannerAd.getElementsByTagName('CompanionClickThrough')[0].firstChild.nodeValue;
// Display banners.
var companionAdDiv = document.getElementById("companionBanner");
// Add the expanded banner to the page
companionAdDiv.innerHTML = " ";
var collapsedAdDiv = document.getElementById("collapsedBanner");
// Add the collapsed banner to the page
collapsedAdDiv.innerHTML = "
";
}
// Loads adXML as XML.
function getXMLDoc(pXML){
var adXML;
if (window.ActiveXObject) {
//parses the XML for IE browsers
adXML = new ActiveXObject("Microsoft.XMLDOM");
adXML.async = false; adXML.loadXML(pXML);
} else //parses the XML for Mozilla browsers
if (window.XMLHttpRequest) {
adXML = (new DOMParser()).parseFromString(pXML, "text/xml"); }
return adXML;
}
November 24th, 2008 | History | Posted by Mike Hoffman
This is the lineup found inside the program for the 1899 Army-Navy game played for the first time at Franklin Field on the University of Pennsylvania’s campus.
It was also the first game played following the five-years hiatus imposed by Presidential cabinet order. The order came after an argument erupted between a Rear Admiral and Brigadier General after the Naval Academy won the fourth-ever Army-Navy football game in 1893 that nearly led to the two officers drawing down on each other in a duel. President Cleveland called an emergency Cabinet meeting over the incident where the Secretary of the Navy and the Secretary of War forbid the two teams from playing each other. That is until 1899.
Back to the lineup set forth inside the program. Apparently the common mantra that offense wins games, but defense wins championships hadn’t been established by 1899 because no one is listed on defense. Granted, most players played both offense and defense in football’s early years.
Another interesting subtraction from the lineup is the position of wide receiver. Even in 1899 both teams must have realized that their programs would benefit most from a run-heavy offense instead of airing it out.
Lastly, it appears the common term of field goal and extra point had not been created. Instead, “goal from field” and “goal from touchdown” was used in 1899.
The program is compliments of BeatNavy.com, which has a wealth of historical documents Mark Johnson collects and posts on the site.
The teams’ run-heavy offenses aside, the forward pass wasn’t legal until 1906. Hence, no receivers in 1899.
BEAT ARMY!
You must be logged in to post a comment.