

function open_flash_hall_plan_static(fair, lang, modus, hall, auftrag_nr) {
  var url = '/kati-cgi/kati/vis/custom/flash/window.cgi?ticket=';
  if ( modus != 'plan' && modus != 'hall' ) modus = 'plan';
  url += '&fair='+encodeURIComponent(fair);
  url += '&lang='+encodeURIComponent(lang);
  url += '&modus='+encodeURIComponent(modus);
  if ( hall  )      url += '&hall='+encodeURIComponent(hall);
  if ( auftrag_nr ) url += '&auftrag_nr='+encodeURIComponent(auftrag_nr);
  window.open(url,'flash_hall_map','width=600,height=560,screenY=20,screenX=20');
}

