max_width = screen.availWidth;
left_width = parseInt((max_width - 860) / 2);

function galerie(name, titel, breite, hoehe) {
	var bild = document.getElementById('image');			
	var text = document.getElementById('text');	
	
	bild.src = name; 
	//bild.width = breite; 
	//bild.height = hoehe; 	
	text.innerHTML = titel;	
}

function foc() {
	window.document.forms[0].elements[0].focus(); 
}
