// JavaScript Document
function LaunchPresentation(Video, Layout) {
	// launch pop-up
	// pass in variables as URL parameters
	var LeftPos, TopPos;
	LeftPos = (screen.width - 958) / 2;
	TopPos = (screen.height - 668) / 2;
				
	window.open("/videoplayer/index.php?video=" + Video + "&layout=" + Layout,
				"_blank",
				"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,left=" + LeftPos + ",top=" + TopPos + ",width=958,height=668");
}