Hallo,
Was macht die Funktion dspl()?
dspl ist die (meine) Abkürzung für display. Die Funktion müsste Amlug in seinem Browsercache finden.
Wenn nicht:
dspl.js:
var an=0;
function dspl(id,ref) {
if(an==1) window.location.href=ref;
if(document.getElementById){
document.getElementById(id).style.display="inline";
an=1;
return false;
}
else return true;
}
und im html:
<a href="/Physik/DEK/InstListe-de.html" onclick="return dspl('InstListe',this.href)">Institute</a><br>
<table id="InstListe" style="display:none" border="0" cellspacing="0" cellpadding="1">
... (im wesentlichen der Inhalt von InstListe-de.html)
Zu sehen unter http://www.uni-muenster.de/Physik
Sinn des Ganzen ist eine schnellere Navigation.
Gruß, Jürgen