with (unFocus.Flash) {
	var v = Player.getVersion();	
var src;
	// detect installed version of flash
	src = '/_images/Home/Home_8.swf';
	if (v >= 8) {
		src = '/_images/Home/Home_8.swf';
	} else if (v >= 7) {
		src = '/_images/Home/Home_7.swf';
	} else if (v >= 6.65) {
		src = '/_images/Home/Home_6_r65.swf';
	} else if (v >= 6) {
		src = '/_images/Home/Home_6.swf';
	}
	// output the movie, and hide the other content
	if (v >= 6) {
		var HTML = new HTML();
		HTML.SetSrc(src);
		HTML.SetWidth(522);
		HTML.SetHeight(269);
		HTML.SetId('productsFlash');
		HTML.SetName('productsFlash');
		HTML.SetSwliveconnect(true);
		HTML.SetMenu(false);
		HTML.SetQuality('high');
		HTML.SetScale('noscale');
		HTML.SetAllowscriptaccess('always');
		document.getElementById('ProductsFlash').innerHTML = HTML.getHTML();
	}
}