function sanim(id, imageURL) {
	imageURL = "images/" + parent.frames[2].lang + "/buttons/" + imageURL + ".gif";
	if (document.layers) {
		document['pic_'+id].src = imageURL == 'none' ? null : imageURL;
		}
	else if (document.all) { // Internet Explorer
		document.all['pic_'+id].src = imageURL == 'none' ? 'none' : imageURL;
		}
	else if (document.getElementById) {	// firefox
		document.getElementById('pic_'+id).src = imageURL == 'none' ? 'none' : imageURL;
		}
	}

function hanim(id, imageURL) {
	if (parent.frames[2].timg != id) {
		imageURL = "images/" + parent.frames[2].lang + "/buttons/" + imageURL + ".gif";
		if (document.layers) {
			parent.frames[2].document['pic_'+id].src = imageURL == 'none' ? null : imageURL;
			}
		else if (document.all) {
			parent.frames[2].document.all['pic_'+id].src = imageURL == 'none' ? 'none' : imageURL;
			}
		else if (document.getElementById) {
			parent.frames[2].document.getElementById('pic_'+id).src = imageURL == 'none' ? 'none' : imageURL;
			}
		}
	}

function haktiv(id, imageURL) {
	if (parent.frames[2].timg != id) {
		imageURL = "images/" + parent.frames[2].lang + "/buttons/" + imageURL + ".gif";
		if (document.layers) parent.frames[2].document['pic_'+id].src = imageURL == 'none' ? null : imageURL;
		else if (document.all) parent.frames[2].document.all['pic_'+id].src = imageURL == 'none' ? 'none' : imageURL;
		else if (document.getElementById) parent.frames[2].document.getElementById('pic_'+id).src = imageURL == 'none' ? 'none' : imageURL;
		parent.frames[2].timg = id;

		for (var i=0; i<parent.frames[2].anzahl; i++) { 
		imageURL = "images/" + parent.frames[2].lang + "/buttons/nav_" + i + ".gif";
			if (i != id) {
				if (document.layers) parent.frames[2].document['pic_'+i].src = imageURL == 'none' ? null : imageURL;
				else if (document.all) parent.frames[2].document.all['pic_'+i].src = imageURL == 'none' ? 'none' : imageURL;
				else if (document.getElementById) parent.frames[2].document.getElementById('pic_'+i).src = imageURL == 'none' ? 'none' : imageURL;
				}
			}
		}
	}

function show(obj) {
	if (document.layers) {
		document.layers[obj].visibility = 'show' == 'none' ? null : 'show';
		}
	else if (document.all) {
		document.all[obj].style.visibility = 'visible' == 'none' ? 'none' : 'visible';
		}
	else if (document.getElementById) {
		document.getElementById(obj).style.visibility = 'visible' == 'none' ? 'none' : 'visible';
		}
	}

function hide(obj) {
	if (document.layers) {
		document.layers[obj].visibility = 'hide' == 'none' ? null : 'hide';
		}
	else if (document.all) {
		document.all[obj].style.visibility = 'hidden' == 'none' ? 'none' : 'hidden';
		}
	else if (document.getElementById) {
		document.getElementById(obj).style.visibility = 'hidden' == 'none' ? 'none' : 'hidden';
		}
	}

