//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://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[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ 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([['Lee Harris','Newmark Theatre','Portland, OR','Thursday','6/4/2026','7:00 PM','7710538','Lee-Harris-6-4-2026'],['Justin Willman','Newmark Theatre','Portland, OR','Friday','6/12/2026','7:00 PM','7710535','Justin-Willman-6-12-2026'],['Justin Willman','Newmark Theatre','Portland, OR','Saturday','6/13/2026','7:00 PM','7835915','Justin-Willman-6-13-2026'],['Tommy Emmanuel','Newmark Theatre','Portland, OR','Monday','6/22/2026','7:30 PM','7905452','Tommy-Emmanuel-6-22-2026'],['The Marvelous Miss Gender Tour Starring Bosco','Newmark Theatre','Portland, OR','Tuesday','8/4/2026','8:00 PM','7793792','The-Marvelous-Miss-Gender-Tour-Starring-Bosco-8-4-2026'],['Max Amini','Newmark Theatre','Portland, OR','Tuesday','8/25/2026','9:00 PM','7941876','Max-Amini-8-25-2026'],['Josh Thomas','Newmark Theatre','Portland, OR','Friday','9/18/2026','7:30 PM','7791244','Josh-Thomas-9-18-2026'],['Julian Lage Quartet','Newmark Theatre','Portland, OR','Friday','10/16/2026','8:00 PM','7708090','Julian-Lage-Quartet-10-16-2026'],['Georgian National Ballet: Sukhishvili','Newmark Theatre','Portland, OR','Saturday','10/17/2026','7:00 PM','7666625','Georgian-National-Ballet--Sukhishvili-10-17-2026'],['Daniel Sloss','Newmark Theatre','Portland, OR','Sunday','10/18/2026','7:00 PM','7731613','Daniel-Sloss-10-18-2026'],['Grand Kyiv Ballet: PRIMA Ballet Gala','Newmark Theatre','Portland, OR','Sunday','11/1/2026','6:00 PM','7910293','Grand-Kyiv-Ballet--PRIMA-Ballet-Gala-11-1-2026'],['Glenn Miller Orchestra: In the Christmas Mood','Newmark Theatre','Portland, OR','Tuesday','12/8/2026','7:00 PM','7824759','Glenn-Miller-Orchestra--In-the-Christmas-Mood-12-8-2026'],['Dusty Slay','Newmark Theatre','Portland, OR','Thursday','12/17/2026','7:00 PM','7844909','Dusty-Slay-12-17-2026']],'Newmark Theatre','http://www.ticketnetwork.com/ticket/Newmark-Theatre-events.aspx');