<!--
function zoom (id,h,w,t)
{
	width=w+50;
	height=600;
	
	if (width>screen.width)
	{
		width=screen.width;
		w=screen.width-50;
	}
	if (height>screen.height)
	{
		height=screen.height-20;
		h=screen.height-60;
}
callpicture = "http://www.asc-darmstadt.de/custom/scripts/zoom.asp?ID="+id + "&Width=" + w  + "&Height=" + h + "&Title=" + t ;
msg=window.open(callpicture,"Vorschau","screenX=0,screenY=0,toolbar=no,width="+width+",height="+height+",directories=no,status=no,scrollbars=yes,menubar=no");	
	
}

function gallery (id,h,w,ids)
{
	width=w+50;
	height=h+60;
	
	if (width>screen.width)
	{
		width=screen.width;
		w=screen.width-50;
	}
	if (height>screen.height)
	{
		height=screen.height-20;
		h=screen.height-60;
}
callpicture = "http://www.asc-darmstadt.de/custom/scripts/zoom.asp?ID="+id + "&Width=" + w  + "&Height=" + h + "&ids=" + ids ;
msg=window.open(callpicture,"Vorschau","screenX=0,screenY=0,toolbar=no,width="+width+",height="+height+",directories=no,status=no,scrollbars=yes,menubar=no");	
	
}

function toggle(id){
  browser = navigator.appName;
        theDIV = document.getElementById(id);
        if (theDIV.style.display == 'none' || theDIV.style.display == ''){
    if (browser.indexOf("Internet Explorer") > -1){
    
    theDIV.style.display = 'block';
    }
    else{
               theDIV.style.display = 'block';       
    }
        }
        else{
               theDIV.style.display = 'none'; 
        }
}

//-->