function ArtGalSwitch(img, width, height) {
    document.getElementsByName("galeriebild")[0].width = width;
    document.getElementsByName("galeriebild")[0].height = height;
    document.getElementsByName("galeriebild")[0].src = img;
}

function OpenVideoPlayer(url, id) {
	var VideoPlayer;
	var pageW = 352+20;
	var pageH = 288+20;
	if (!VideoPlayer) {
		VideoPlayer = window.open(url+'videoplayer.php?id='+id, "", 'menubar=0,location=0,resizable=0,scrollbars=0,status=0,width='+pageW+',height='+pageH+'')
	}
	myWindow.focus();
}

function GotoURL(url) {
    window.location.href = url;
}