function eventLink(url) {
  if (window.name == 'event') {
    var new_window = window.open(url,'new_window','resizable,location,menubar,scrollbars,toolbar,status');
    new_window.focus();
    self.close();
  } else {
    window.location = url;
  }
}
