function launchStaticVideoPlayer() {
        var PBSVideoWindow_X_final=580;
        var PBSVideoWindow_Y_final=350;
        if (PBSVideoWindow_X != null) {
                PBSVideoWindow_X_final=PBSVideoWindow_X;
        }
        if (PBSVideoWindow_Y != null) {
                PBSVideoWindow_Y_final=PBSVideoWindow_Y;
        }
	
        var a="toolbar=no,location=no,directories=no,menubar=no,resizable=yes,scrollbars=no,width=" + PBSVideoWindow_X_final + ",height=" + PBSVideoWindow_Y_final;
        if (navigator.appName.indexOf("Microsoft")>=0) {
		a+=",left=50,top=50";
        } else {
		 a+=",screenX=50,screenY=50";
	}
        if (floater != null) {
                if (floater.closed == false) {
                        floater.close();
                        var floater = null;
		}
	}
        floater=window.open("/wnet/religionandethics/teach/video_hi.html","video_player",a);
        floater.creator = self;
	return false;
}