function anim(id, imageURL) {
	if (timg != id) {
		imageURL = 'images/lexikon/' + imageURL + '.gif';
		if (document.layers) {
			document['pic_'+id].src = imageURL == 'none' ? null : imageURL;
			}
		else if (document.all) {
			document.all['pic_'+id].src = imageURL == 'none' ? 'none' : imageURL;
			}
		else if (document.getElementById) {
			document.getElementById('pic_'+id).src = imageURL == 'none' ? 'none' : imageURL;
			}
		}
	}

function framechange(url1,url2) {
	parent.frames['links'].location.href=url1;
	parent.frames['content'].location.href=url2;
	}

function links(url1) {
	if (parent.frames['links']) {
		parent.frames['links'].location.href = url1;
		}
	}

function openwindow(theURL,winName,features) {
	newWindow = window.open(theURL,winName,features)
	if (!newWindow.opener) {
		newWindow.opener = window
		}
	newWindow.focus()
}