if (!document.all && navigator.mimeTypes) {
	var mov = navigator.mimeTypes['video/quicktime'];
	if (mov && mov.enabledPlugin) {	
		qt = true;
		if (mov.enabledPlugin.name.indexOf('2') > 0) qt2 = true;
	}
} else if (document.all) { qt = true; qt2 = true; }

function embedder(movName) {
	if (!qt) document.write('<SPAN Class=reg2>This file requires the QuickTime plug-in.</SPAN>');
	else {
		var printStr = '<EMBED SRC=\"mov/'; 
		if (qt2) printStr += movName + '_3.mov\" ';
		else printStr += movName + '.mov\" ';
		printStr += 'autoplay=\"false\" Width=240 Height=18><\/EMBED>';
		document.write(printStr);
	}
}

