function zuruck(){
	location.href='dsw.htm#mitglieder';
}

function init1(){
var ie=document.all
var ns6=document.getElementById&&!document.all
}

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat" && !window.opera)? document.documentElement : document.body
}

function showArea(area,width,top1,left){
crossobj=document.getElementById? document.getElementById(area) : document.all.area.valueOf();

pgyoffset=ns6? parseInt(pageYOffset) : parseInt(ietruebody().scrollTop)
var iw=ns6? pageXOffset+window.innerWidth: ietruebody().scrollLeft+ietruebody().clientWidth
var ih=ns6? pgyoffset+window.innerHeight : pgyoffset+ietruebody().clientHeight
var t=0;var l=0; 

w=Math.round(iw*width/100);
t=top1;
l=left;

crossobj.style.width=w+"px";
crossobj.style.top=t+"px";
crossobj.style.left=l+"px";

crossobj.style.visibility="visible"
}

function longArea(area,h){
//"area" will be h pixels long
crossobj=document.getElementById? document.getElementById(area) : document.all.area.valueOf();
crossobj.style.height=h+"px";
crossobj.style.visibility="visible"
}

function wideArea(area,width,sum){
//"area" will be w percent wide
crossobj=document.getElementById? document.getElementById(area) : document.all.area.valueOf();
var iw=ns6? pageXOffset+window.innerWidth: ietruebody().scrollLeft+ietruebody().clientWidth
w=Math.round(iw*width/100);
m=Math.round(iw*(sum-width)/200);
crossobj.style.width=w+"px";
crossobj.style.margin=m+"px";
crossobj.style.visibility="visible"
}
