// JavaScript Document
var videoWindow;

function makeVideoWindow( url ) {
	if (true || !videoWindow || videoWindow.closed()) {
		videoWindow = window.open(url, "mschmidtvideo", "height=285,width=375,resizable=0");
		if (!videoWindow.opener) {videoWindow.opener = window;}
	}
	if (videoWindow.focus) {videoWindow.focus();}
}