var fenster = null;

function videoFenster(type,param) {
	var url,width,height;
	if (fenster) fenster.close();
	switch (type) {
		case 'youtube':
			url="modules/videoplayer/youtube.php?id="+param;
			width = 450;
			height = 370;
			break;
	}
	fenster = open(url, "video", "width="+width+",height="+height+",locationbar=no,menubar=no,scrollbars=no");
	fenster.focus();
}

function openImage(imgPath,imgTitle,w,h) {
	fenster = open("modules/imagePopup.php?img=../"+imgPath+"&title="+imgTitle,"imgPopup","width="+(w+24)+",height="+(h+40)+",innerWidth="+(w+20)+",innerHeight="+(h+20)+",locationbar=no,menubar=no,scrollbars=auto,resizable=yes");
}

