// CSU Petershausen

// Link auf eigene Seite markieren
function marklink()
{ var i,f,j=0;
  if (parent.frames.length<2) f=location.href; else f=parent.location.href;
  f=noquery(f); if (f.substring(f.length-1)=='/') f+="index.htm";
  for (i=0; i<document.links.length; i++)
  { lk=document.links[i]; // bei Forum ggf. erst ab index.htm = 1. Link in Nav-Box
    h=lk.href; if (h.substr(h.length-9)=="index.htm") j=1;
    if (j==1 && f==noquery(lk.href) && document.links[i].name=='')
    { lk.style.color="black"; lk.style.textDecoration="none";
      lk.style.cursor="default"
} } }

// URL ohne Query-String
function noquery(s)
{ var i=s.indexOf('?');
  if (i>-1) return s.substr(0,i); else return s
}

