// 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 13th, 2008 | Uncategorized | Posted by Mike Hoffman
Rivals.com tapped Army senior fullback Collin Mooney as its player of the week among Independent schools for the third time this season after he bulldozed for 207 yards against Rice last Saturday. He eclipsed the 1,000 yard milestone for the season running for 1,173 yards through 10 games.
Mooney has come on strong for the Black Knights since his breakout game against Tulane on Oct. 4 when he ran for 187 yards and four touchdowns. He followed that up with a 229 yard outing against Eastern Michigan the next week. Army won both games for their first two of the season.
For a fullback his size at 247 pounds he has surprising speed breaking off multiple long runs including an 81 yard run against Buffalo, a 67 yard run against Eastern Michigan, a 61 yard run against Rice and a 55 yard run against Tulane.
It will be key against the Midshipmen and their vaunted triple-option offense to get Mooney going early for the Black Knights to stay in the game and keep their defense off the field.
You must be logged in to post a comment.