//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.CreateTable([['FSV Mainz 05 vs. FC Augsburg','Mewa Arena','Mainz, Germany','Saturday','2/8/2025','TBD','6551082','FSV-Mainz-05-vs--FC-Augsburg-2-8-2025'],['FSV Mainz 05 vs. FC St. Pauli','Mewa Arena','Mainz, Germany','Saturday','2/22/2025','TBD','6551083','FSV-Mainz-05-vs--FC-St--Pauli-2-22-2025'],['FSV Mainz 05 vs. SC Freiburg','Mewa Arena','Mainz, Germany','Saturday','3/15/2025','TBD','6551084','FSV-Mainz-05-vs--SC-Freiburg-3-15-2025'],['Borussia Dortmund vs. FSV Mainz 05','Westfalenstadion','Dortmund, Germany','Saturday','3/29/2025','TBD','6550874','Borussia-Dortmund-vs--FSV-Mainz-05-3-29-2025'],['FSV Mainz 05 vs. Holstein Kiel','Mewa Arena','Mainz, Germany','Saturday','4/5/2025','TBD','6551086','FSV-Mainz-05-vs--Holstein-Kiel-4-5-2025'],['FSV Mainz 05 vs. VfL Wolfsburg','Mewa Arena','Mainz, Germany','Saturday','4/19/2025','TBD','6551087','FSV-Mainz-05-vs--VfL-Wolfsburg-4-19-2025'],['FC Bayern Munich vs. FSV Mainz 05','Allianz Arena','München, Germany','Saturday','4/26/2025','TBD','6550816','FC-Bayern-Munich-vs--FSV-Mainz-05-4-26-2025'],['FSV Mainz 05 vs. Eintracht Frankfurt','Mewa Arena','Mainz, Germany','Saturday','5/3/2025','TBD','6551088','FSV-Mainz-05-vs--Eintracht-Frankfurt-5-3-2025'],['FSV Mainz 05 vs. Bayer 04 Leverkusen','Mewa Arena','Mainz, Germany','Saturday','5/17/2025','TBD','6551089','FSV-Mainz-05-vs--Bayer-04-Leverkusen-5-17-2025']],'FSV Mainz 05','https://www.ticketnetwork.com/ticket/FSV-Mainz-05-events.aspx');