function getParams() {
var index = document.URL.indexOf('?');
var params = new Array();
if ( index != -1 ) {
var nameValuePairs
=document.URL.substring(index+1,document.URL.length).split('&');
for ( var i=0; i<nameValuePairs.length; i++ ) {
nameVal = nameValuePairs[i].split('=');
params[nameVal[0]] = nameVal[1];

}

} return params;
}
params = getParams();
var bctid, bcpid, refid;

bctid = (ext_bctid != null && ext_bctid != "") ? ext_bctid : unescape(params["bctid"]);

bcpid = (ext_bcpid != null && ext_bcpid != "") ? ext_bcpid : unescape(params["bcpid"]);

refid = (ext_refid != null && ext_refid != "") ? ext_refid : unescape(params["refid"]);

lineupid = (ext_lineupid != null && ext_lineupid != "") ? ext_lineupid : unescape(params["bclid"]);


var ss_pn = window.location.pathname;
var ss_pp = ss_pn.split("/");
var secNm = "";

for (var i = 1, y = 0; i < ss_pp.length - 1; i++, y++) {
secNm += "section_" + y + "=" + ss_pp[i] + ";";

}


var qStr = "?bcpid=" + bcpid;

if (ext_flashobjname != null && ext_flashobjname != "") qStr += "&ext_flashobjname=" + ext_flashobjname;
if (ext_width != null && ext_width != "") qStr += "&ext_width=" + ext_width;
if (ext_height != null && ext_height != "") qStr += "&ext_height=" + ext_height;
if (ext_autoplay != null && ext_autoplay != "") qStr += "&ext_autoplay=" + ext_autoplay;
if (ext_channelname != null && ext_channelname != "") qStr += "&ext_channelname=" + ext_channelname;
if (ext_adDomain != null && ext_adDomain != "") qStr += "&ext_adDomain=" + ext_adDomain;
if (secNm != null && secNm != "") qStr += "&secNm=" + escape(secNm);
if (lineupid != null && lineupid != "undefined") qStr += "&lineupid=" + lineupid;
if (bctid != null && bctid != "undefined") qStr += "&bctid=" + bctid;
if (refid != null && refid != "undefined") qStr += "&refid=" + refid;
if (ext_playername != null && ext_playername != "") qStr += "&ext_playername=" + ext_playername;


document.write('<iframe name="' + ext_iframename + '" frameborder="0" src="http://www.logoonline.com/partners/players/video/player.html' + qStr + '" width="' + ext_width + '" height="' + ext_height + '" scrolling="no">You will need Microsoft Internet Explorer 5+ or Netscape 6+ to view this video.</iframe>');