function navV(a,b){
for (i=0;i<b.length;i++){
if(b[i]==a[0]){
obj=document.getElementById(b[i]);
obj.style.display="block";
}
else if(b[i]!=a[0]){
obj=document.getElementById(b[i]);
obj.style.display="none";
}
}
}
function high_light(a,b){
	var img_off=document.getElementsByName(a)[0];
	if(b==0){
	img_off.src="images/gif/"+a+"_on.gif";
	}
	else {
	img_off.src="images/gif/"+a+".gif";	
	}
}
	
	

function pop_up(A, Breite, Hoehe) {
window.open('upload/bilder/'+A,'','width='+Breite+', height='+Hoehe+', scrollbars=no');
}
