<!--
  // Heidenburg online - http://www.heidenburg.de   
   
   function mailLink(localpart) {
     location.href='mailto:'+localpart+'@heidenburg.de';
   }
   
   function mailLinkWithSubject(localpart,subject) {
     location.href='mailto:'+localpart+'@heidenburg.de?subject=' + subject;
   }
   
   function openBannerWindow(file,destUrl,text) {
     var win;
     win = window.open("","","width=490,height=340,resizable=yes");
     win.document.write('<html><head><title>heidenburg.de :: Banner verlinken</title><link rel="stylesheet" type="text/css" href="http://www.heidenburg.de/stylehdb.css"></head><body class="bgwhite"><table border="0">');
	 win.document.write('<tr><td><b class="titel">Banner verlinken</b><hr noshade size="1"><br>&nbsp;</td></tr>');
     win.document.write('<tr><td>Banner-Vorschau:<br><img src="http://www.heidenburg.de/images/' + file + '" border="0" alt="' + text + ' - ' + destUrl + '" width="468" height="60" border="0"></td></tr>');
	 win.document.write('<tr><td>&nbsp;</td></tr>');
     win.document.write('<tr><td><form>HTML-Quellcode für Banner:<br><textarea rows="5" cols="70" readonly><!-- BEGIN BANNER ' + text + ' --><a href="http://weihnachtsrock.heidenburg.de" target="_blank"><img src="http://www.heidenburg.de/images/' + file + '" border="0" alt="' + text + ' - ' + destUrl + '" width="468" height="60" border="0"></a><!-- END BANNER ' + text + ' --></textarea></form></td></tr>');
     win.document.write('<tr><td align="right" class="fnote"><a href="javascript:window.close();">Fenster schließen</a></td></tr></table></body></html>');
     win.document.close();
   }
   
   function openWindow(file) {
     window.open(file,"","width=550,height=540,resizable=yes,scrollbars");
   }
   
   function preloadImages() {
     if(document.images) {
       if(!document.imageArray) document.imageArray = new Array();
       var i,j = document.imageArray.length, args = preloadImages.arguments;
    
       for(i=0; i<args.length; i++) {
         if (args[i].indexOf("#")!=0) {
           document.imageArray[j] = new Image;
           document.imageArray[j++].src = args[i];
         }
       }
     }
   }
  
   function openContent() {
     if (self.location.search!="") {
	   var stelle=self.location.search.indexOf("=");
       var ende=self.location.search.length;
       self.Inhalt.location.href=self.location.search.substring(stelle+1, ende)+".htm";
     }
   }
   
   function openHtml(file) {
     if (file != "x") {
       parent.Inhalt.location.href=file;
     }
   }

// -->