// Begin (Script by J.Jeffers)
function showEvent(id) {

  // initialize window variables...
  url = "/promotions/view/" + id
  windowWidth = 500;
  windowHeight = 500;
  windowTop = (screen.width/2) - (windowWidth/2);
  windowLeft = (screen.height/2) - (windowHeight/2);
  fullscreen = "no";
  
  windowprops = "top=" + windowLeft + ",left=" + windowTop + ",resizable=no,fullscreen=" + fullscreen + ",scrollbars=no" + ",width=" + windowWidth + ",height=" + windowHeight;
  window.open(url, "rfadvantage", windowprops);
}
