// 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 15th, 2008 | Uncategorized | Posted by Mike Hoffman
Navy junior running back Cory Finnerty ran 23 yards after a beautiful pitch from quarterback Jarod Bryant for a touchdown to knot the game at seven. Finnerty got to around the left edge of the Notre Dame offense and was gone
Finnerty’s touchdown run came after a five play 52 yard drive that showed signs of Navy getting their triple option attack going. Senior fullback Eric Kettani started it off with a 15 yard run to the right.
The drive came after Notre Dame’s drive stalled on a play that had to leave Fighting Irish fans scratching their heads. Quarterback Jimmy Clausen called his own number on a quarterback sneak on a 3rd and four. Normally, you only see that play called on a 3rd or 4th down and inches. Charlie Weis started calling the offensive plays today. Wonder if that was his call or Clausen’s at the line.
UPSET ALERT: Indiana is staying close with Penn State with the Nittany Lions leading only 10-7 at halftime. Indiana came into the game as 35 point underdogs. The 8th ranked Lions are coming off a tough loss last week against Iowa dashing their national championship hopes, but if they win out they still go to the Rose Bowl.
You must be logged in to post a comment.