/* Created by Oliver Vogt/ZAWiW University of Ulm - (c) 28.06.2000 - COPYRIGHT */

/* Uebergabe des Pfades der Startdatei - fuer CD-ROM */

var loc=document.location.toString();
var pos=loc.indexOf('loc=');
if(loc) {
  if(pos>0 && loc.substring(pos+4).length>0) {
     org='../'+loc.substring(pos+4);
     loc='?loc='+loc.substring(pos+4);
  }
  else {
     loc='';
     org='index.htm';
  }
}
else {
   loc='';
   org='../inhalt.htm';
}


/*  Aufruf naechste Seite mit Parameteruebergabe des Pfades der Startdatei */

function lade(next)
{
next=next;
window.setTimeout("window.location.href=next+loc;",500);
}


function weiter(next)
{
next=next;
window.location.href=next+loc;
}


function zurueck(prev)
{
prev=prev;
window.location.href=prev+loc;
}



/*  Abbruch/Ende - ruft die Startdatei auf */

function abbruch()
{
window.location.href=org;
}

