
var urlPop = "http://www.ticketsnow2.com/d.asp?id=2751&";


// set the popup window width and height
var windowW=600; // wide
var windowH=400; // high

// set the screen position where the popup should appear
var windowX = (screen.width/2)-(windowW/2);
var windowY = (screen.height/2)-(windowH/2);


function openwindow(event)
{

win2 = window.open(urlPop+event,"new_window",
"toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes, height=400, width=800, left=220,top=280")

}


