function movein(which,cname) {
 which.className=cname + "high";
}
function moveout(which,cname) {
 which.className=cname;
}
function gotop(url){
 top.location.replace(url);
 return(false);
}
function gotourl(url) {
 top.hauptframe.location.replace(url);
 return(false);
}
function gotoframe(url,frameurl){
 top.location.replace(url);
 parent.hauptframe.location.replace(frameurl);
 return(false);
}
function gotohash() { 
   hash = top.location.hash; 
   if(hash) {
    top.hauptframe.location.replace(hash.substr(1));
   }
} 
