// JavaScript Document

function zeigen(welches){
	if (welches) {
		document.getElementById(welches).style.visibility = "visible";
	}
}

function weg(welches){
	if (welches) {
		document.getElementById(welches).style.visibility = "hidden";
	}
}

function showZoomImg($path, $text,$width) {
	b = new Image(); b.src = $path;
	document.getElementById("picturePlace").style.display = "inline";
	document.images["pictureIMG"].src = b.src;
	document.getElementById("pictureText").innerHTML = $text;
	document.getElementById("pictureFrame").style.width=$width;
}
    
function hideIMG() {
	document.getElementById("picturePlace").style.display = "none";
}
