// -- VARIABLEN --------------------

var scrollbreite = 0;
var scrollhoehe = 0;
var breite = 0;
var hoehe = 0;

// -- SCROLLBEREICH --------------------
function ermittle_fenstergroesse() {
  if (is.ie) {breite = document.body.clientWidth;}else{breite = self.innerWidth;}
  if (is.ie) {hoehe = document.body.clientHeight;}else{hoehe = self.innerHeight;}
//  alert(breite);
  if(breite > 1024) { breite = 1024; }
  scrollbreite = breite - 190;
  if(scrollbreite < 600) { scrollbreite = 600; }
  scrollhoehe = hoehe - 150;
}

function emladr(prefix,domain) {
  document.write('<a href=\"mailto:' + prefix + '@' + domain + '\">');
  document.write(prefix + '@' + domain + '</a>');
}

function move_arr(idx) {
  for (m=1; m<=10; m++) {  MM_swapImage('pfeil'+m,'','transparent.gif',1); }
  MM_swapImage('pfeil'+idx,'','gruenerpfeil2.gif',1);
}

function ns70warnung() {
  if(is.ns70) { 
    document.write('<div STYLE="POSITION: absolute; Z-INDEX: 100; VISIBILITY: visible; TOP: 10px; LEFT: 10px; width:300px; border:1px solid #000000;padding:5px;background-color: #ffffff;font-family: sans-serif;font-size: 12px;"><font color=red>Sie sollten mindestens Netscape 7.1 (oder ggflls. den Internet Explorer ab Version 5) benutzen, um diese Seiten korrekt darzustellen.</font></div>');
  }
}

// --  Menü  --

function menu_out(page) {
  var col1=new Array();col2=new Array();
  for (m=1;m<=16;m++) { col1[m]=' class="std"'; }
  col1[page]=' class="sel"';
  document.write('<div class="navcontainer">');
  document.write('<ul id="navlist">');
  document.write('<li><a'+col1[1]+' href="index.html">Startseite</a></li>');
  document.write('<li><a'+col1[2]+' href="tierkommunikation.html">Tierkommunikation</a></li>');
  document.write('<li><a'+col1[3]+' href="ueber_mich.html">Über mich</a></li>');
  document.write('<li><a'+col1[4]+' href="kurse.html">Kurse</a></li>');
  document.write('<li><a'+col1[5]+' href="beratung.html">Beratung / Tiergespräch</a></li>');
//  document.write('<li><a'+col1[6]+' href="fern-reiki_liste.html">Fern-Reiki Liste</a></li>');
//  document.write('<li><a'+col1[7]+' href="fang_an.html">Fang an</a></li>');
  document.write('<li><a'+col1[9]+' href="bilder.html"><b>Tieraquarelle</b></a></li>');
//  document.write('<li><a'+col1[10]+' href="termine.html">Termine</a></li>');
  document.write('<li><a'+col1[11]+' href="aktuelles.html"><b>Aktuelles</b></a></li>');
//  document.write('<li><a'+col1[12]+' href="notfelle.html"><b>Notfelle</b></a></li>');
//  document.write('<li><a'+col1[16]+' href="erfolge.html">Impressionen / Ergebnisse / Erfolge</a></li>');
  document.write('<li><a'+col1[8]+' href="buecher.html">Bücher</a></li>');
  document.write('<li><a'+col1[13]+' href="verweise.html">Links</a></li>');
  document.write('<li><a'+col1[14]+' href="kontakt.html">Kontakt</a></li>');
  document.write('<li><a'+col1[15]+' href="anmelde_und_teilnahme_bed.html">Anmelde- und<br>Teilnahmebed.</a></li>');
  document.write('</ul>');
  document.write('</div>');
  document.write('<div style="position:absolute; top:.100px; left:.100px;"><iframe src="http://www.aixcms.de/counter_data/kommunikation-mit-tieren/zaehler.php?iframereferrer='+escape(document.referrer)+'" width=0 height=0 border=0></iframe></div>');
}

// -- Termine --

function termine() {
  var monat=new Array();grund=new Array();aufbau=new Array();uebung=new Array();
  var cnt=1;

  monat[cnt]='April';grund[cnt]='jedes 3.<br>Wochenende<br>im Monat';aufbau[cnt]='16.04./17.04';uebung[cnt]='a.A.';cnt++;

  document.write('<table>');
  document.write('<tr><td width=80></td><td width=80 class="boldText">Grundkurs	</td><td width=80 class="boldText">Aufbaukurs	</td><td width=80 class="boldText">Übungstag</td></tr>');
  for (ii=1;ii<cnt;ii++) {
    document.write('<tr><td valign=top class="boldText">'+monat[ii]+'</td><td valign=top class="descriptiveText">'+grund[ii]+'</td><td valign=top class="descriptiveText">'+aufbau[ii]+'</td><td valign=top class="descriptiveText">'+uebung[ii]+'</td></tr>');
  }
  document.write('</table>');
}

