/*** TEXT POPUP ***/

function openTextWindow(e, adr) {
  
  // cancel bubble
  if (!e) var e = window.event;
  e.cancelBubble = true;
  if (e.stopPropagation) e.stopPropagation();
  
  // 481x651
  wText = window.open(adr, "Text", "width=506,height=671,location=no,menubar=no,resizable=yes,status=no,toolbar=no,scrollbars=yes");
  wText.focus();
}


/*** AUSSTELLUNG POPUP ***/

function openExWindow(e, adr) {
  
  // cancel bubble
  if (!e) var e = window.event;
  e.cancelBubble = true;
  if (e.stopPropagation) e.stopPropagation();
  
  // open window
  // 962x651
  wEx = window.open(adr, "Ausstellung", "width=962,height=651,location=no,menubar=no,resizable=yes,status=no,toolbar=no,scrollbars=no");
  wEx.focus();
}
