/*** JavaScripts for HMS Umwelttechnik ***/

// Popup-Fenster öffnen:
function popup(url,breite,hoehe,bildlauf,name) {
  if (!breite || breite=='') breite = '400';
  if (!hoehe || hoehe=='') hoehe = '300';
  if (!bildlauf || bildlauf=='') bildlauf = 'yes';
  if (!name || name=='') name = 'popupfenster';
  features = ",toolbar=no,location=no,directories=no,status=1,resizable=yes,menubar=no";
  popwin = window.open(url, name, "width=" + breite + ",height=" + hoehe + ",scrollbars=" + bildlauf + features);
  popwin.focus(); 
}

/* (P) EXYST, S.Ruby */

