<!--
  function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
  }
  
  function openCentered (url, width, height, windowName, featureString) {
   if (!windowName)
      windowName = '';
   if (!featureString)
      featureString = '';
   else
      featureString = ',' + featureString;
   var x = Math.round((screen.availWidth - width) / 2);
   var y = Math.round((screen.availHeight - height) / 2);
   featureString = 'left=' + x + ',top=' + y + ',width=' + width + ',height=' + height + featureString;
   return win = open (url, windowName, featureString);	  
  }


  function openCentered2(url, width, height, windowName, featureString) 
  {
var detect = navigator.userAgent.toLowerCase();
var OS,browser,version,total,thestring;

if (detect.indexOf('konqueror') + 1)
{
	browser = "Konqueror";
	OS = "Linux";
}
else if (detect.indexOf('safari') + 1) browser = "safari";
else if (detect.indexOf('omniweb') + 1) browser = "omniweb";
else if (detect.indexOf('opera') + 1) browser = "opera";
else if (detect.indexOf('webtv') + 1) browser = "webtv";
else if (detect.indexOf('icab') + 1) browser = "icab";
else if (detect.indexOf('msie') + 1) browser = "msie";
else if (!(detect.indexOf('compatible') + 1))
{
	browser = "compatible";	// netscape
	version = detect.charAt(8);
}
else browser = "An unknown browser";

if (!version) version = detect.charAt(detect.indexOf('browser') + 1 + browser.length);

if (!OS)
{
	if (detect.indexOf('linux') + 1) OS = "Linux";
	else if (detect.indexOf('x11') + 1) OS = "Unix";
	else if (detect.indexOf('mac') + 1) OS = "Mac";
	else if (detect.indexOf('win') + 1) OS = "Windows";
	else OS = "an unknown operating system";
}

   if (browser == 'compatible') {
		openCentered (url, width, height, windowName, featureString);
		exit();
	}
   
   if (!windowName)
      windowName = '';
   if (!featureString)
      featureString = '';
   else
      featureString = ',' + featureString;
   
   var x = Math.round((screen.availWidth - width) / 2);
   var y = Math.round((screen.availHeight - height) / 2);
   featureString = 'left=' + x + ',top=' + y + ',width=' + width + ',height=' + height + featureString;
   win1 = window.open ("about:blank", windowName, featureString);
   win1.document.open();
   
win1.document.write(html);
win1.document.close();
  }  
  
   function addToFavorites()
   {
      if (window.external){
         window.external.AddFavorite(urlAddress,pageName)
      } else { 
         alert("Sorry! Your browser doesn't support this function. If you use Netscape please press <CTRL>-D to bookmark our page after you have closed this alert-window.");
      }
   }

   function ChangePageTo(Site) {
   var myindex=Site.Sitebox.selectedIndex
      if (Site.Sitebox.options[myindex].value != "999")
         { window.open(Site.Sitebox.options[myindex].value, target="_blank"); }
      Site.Sitebox.options[0].selected=true
   }

   function ChangePageTo2(Site) {
   var myindex=Site.Sitebox.selectedIndex
      if (Site.Sitebox.options[myindex].value != "999")
         { window.open(Site.Sitebox.options[myindex].value, target="body"); }
      Site.Sitebox.options[0].selected=true
   }
      
   function ChangePageTo3(Site) {
   var myindex=Site.Sitebox.selectedIndex
      if (Site.Sitebox.options[myindex].value != "999")
         { window.open(Site.Sitebox.options[myindex].value, target="_self"); }
      Site.Sitebox.options[0].selected=true
   }
   
   function ZweiFrames(URL1,F1,URL2,F2)
   {
     parent.frames[F1].location.href=URL1;
     parent.frames[F2].location.href=URL2;
   }
   
  function addtag(tag) {
     document.form1.bodyinput.value = document.form1.bodyinput.value + tag;
  }
 
  function update() {
	 document.location.reload()
  }
  
// am ersten Maerz 2005 eingefuegt Zuletzt erweitert am update, den update script von webtoolbox.net
  
	function lastupdate() {
	// wochentage
	var wochentag = new
	Array("Sonntag,","Montag,","Dienstag, den","Mittwoch,","Donnerstag,","Freitag","Samstag, den");
	
	// monatsnamen
	var monat = new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");
	
	today = new Date()
	modifiziert = new Date(document.lastModified)
	tageher = Math.ceil( (today.getTime()- modifiziert.getTime())/(24*60*60*1000) )
	
	if(tageher == 1) {
	wtag = " Tag"
	} else {
	wtag = " Tagen"
	}
	var then = new Date(document.lastModified);
	document.writeln("Seite modifiziert am "+ wochentag[then.getDay()] + " den " + then.getDate() + ". " + monat[then.getMonth()] )
	return
	}

// Uhrzeit script von webtoolbox.net

	function zeit(){
	uhrzeit=new Date();
	document.write(uhrzeit.getHours() + "Uhr " + uhrzeit.getMinutes());
	}

//-->