// PopUp for Mediathek window
var mediathekWin;

// Methods for Full image pop up
function showPresentation(vortragUri,vortragTitle,width,height) {
	var screenX = (screen.width - width) / 2;
	var screenY = (screen.height - (height*1.3)) / 2;
  var prefs = "width="+width+",height="+height+",screenX="+screenX+",screenY="+screenY;
	prefs = prefs+",directories=no,locationbar=no,location=no,menubar=no,status=no,resizable=yes,scrollbars=no";
  mediathekWin = window.open("/fileadmin/_mediathek/diplompatientin/vortraege_popup.php?uri="+vortragUri+"&title="+vortragTitle,"Mediathek",prefs);
  if (window.focus) 
		mediathekWin.focus();
} // end of function

// Methods for Full image pop up
function showMediathekItemViaFormId(myFormId, width, height) {
	var myForm = document.getElementById(myFormId);
	var screenX = (screen.width - width) / 2;
	var screenY = (screen.height - (height*1.3)) / 2;
  var prefs = "width="+width+",height="+height+",screenX="+screenX+",screenY="+screenY;
	prefs = prefs+",directories=no,location=no,locationbar=no,menubar=no,status=no,resizable=yes,scrollbars=no";
  mediathekWin = window.open("dummy",'Mediathek',prefs);
  if (window.focus) 
		mediathekWin.focus();
	myForm.target = 'Mediathek';
	myForm.submit();
} // end of function


