// 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;
}
December 20th, 2008 | EagleBank Bowl | Posted by Mike Hoffman
An impressive streak by this Navy defense just ended. Wake Forest scored a touchdown, which is the first points Navy has allowed since the fourth quarter against Notre Dame.
Wake Forest started the drive in the shadow of their own end zone at the two yard line. Wake fullback Kevin Harris appeared to have fumbled the football which King scooped up and returned for a touchdown. However, after the officials reviewed the play it was ruled Harris was down before he fumbled.
Wake quarterback Riley Skinner led the previously punchless Wake attack for a 98-yard drive for a touchdown. He hooked up twice with wide receiver D.J. Boldin for large chunks of yardage. Wake tailback Josh Adams then punched in the touchdown from four yards out to make this a game.
If King’s second touchdown of the day would have stood this one would have been over before halftime, but Navy let Wake sneak its way back into it after dominating most of the first half.
You must be logged in to post a comment.