<!--
function setBrowserLocation(){
 var name = navigator.appName;
 var isNS=document.layers?true:false;
 var isIE=(document.all!=null)||(navigator.userAgent.indexOf('MSIE')!=-1);
 var isDom2=document.getElementById;
 var fVers=parseFloat(navigator.appVersion);
 if (!isDom2 && ((isNS && fVers<4)||(isIE && fVers<4)))
     alert("Your browser is very old. Please upgrade it if you want to see this page correctly.");
/* if (isIE)
     window.location="ie/index.html";
 else
     window.location="ns/index.html";
*/
 window.location="index.html";
}

function getBrowserData(){
 var name = navigator.appName;
 var isNS=document.layers?true:false;
 var isIE=(document.all!=null)||(navigator.userAgent.indexOf('MSIE')!=-1);
 var isDom2=document.getElementById;
 var fVers=parseFloat(navigator.appVersion);
 document.Browser.Name=name;
 document.Browser.isNS=isNS;
 document.Browser.isIE=isIE;
 document.Browser.isDom2=isDom2;
 document.Browser.Version=fVers;
}

function writeBrowserName(){
 var name = navigator.appName;
 document.open();
 document.Write(name);
 document.close();
}

function writeBrowserNameWithVersion(){
 var name = navigator.appName;
 var fVers=parseFloat(navigator.appVersion);
 alert(name+" "+fVers);
}
function checkBrowser(){
 var name = navigator.appName;
 var isNS=document.layers?true:false;
 var isIE=(document.all!=null)||(navigator.userAgent.indexOf('MSIE')!=-1);
 var isDom2=document.getElementById;
 var fVers=parseFloat(navigator.appVersion);
 if (!isDom2 && ((isNS && fVers<4)||(isIE && fVers<4)))
     alert("Ihr Browser ist sehr alt. Sie benötigen eine neuere Version, um den Inhalt dieser Seite korrekt angezeigt zu bekommen.");
}

//function jsLinkPreview(){alert("Die Links funktionieren im Vorschau-Modus nicht.Dafür muss die Seite (das Projekt) vorher exportiert werden.");}

//-->

function FensterOeffnen(Adresse, Titel){
  //alert(Titel);
  NeuesFenster = window.open(Adresse, Titel);
  NeuesFenster.focus();
}
