// flipperooni versionfunction pop_stop() {	if (parent.format_displaying == 1) {		// pause QT: mac firefox, pc firefox, pc ns, pc ie  		try {			document.qt1.SetSpriteTrackVariable(11,10,'pause');  		} catch (oError) { }			} else if (parent.format_displaying == 2) {		// pause Real:		document.videoplayer.DoPause();	} else if (parent.format_displaying == 3) {		// pause WMP:		try{			if(window.ActiveXObject)			{				Player.controls.pause();			}			else if (window.GeckoActiveXObject)			{				document.Player.controls.pause();			}		} catch(oError) { } 			}	return false;}function swf_vid_window(which_window, image_width, image_height) {	// swf popup window, but also pauses video	newwin = window.open(which_window, "cfl_window",'toolbar=0,location=0,directories=0,scrollbars=1,status=0,menubar=0,resizable=1,width=' + image_width + ',height=' + image_height);	window.self.name = "cfl_parent";	if(video_displaying == true) {		frames['iframe1'].pop_stop();	}	return false;}