<!--
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	// embed the flash movie
	AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,2,0',
		'width', '100%',
		'height', '100%',
		'src', 'peopleco',
		'quality', 'high',
		'pluginspage', 'http://www.adobe.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'showall',
		'wmode', 'window',
		'devicefont', 'false',
		'id', 'peopleco',
		'bgcolor', '#ffffff',
		'name', 'peopleco',
		'menu', 'false',
		'allowFullScreen', 'true',
		'allowScriptAccess','sameDomain',
		'movie', 'peopleco',
		'salign', ''
		); //end AC code
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<div style="padding:40px;"><img src="noflash.jpg" />'
	+ '<p style="padding-left:30px;">The Lenz<br />Hornbeam Park<br />Hookstone Road <br />Harrogate HG2 8RE</p>'
+ '<p><span style="font-size:24px;padding-left:30px;">T: 01423 874 566</span></p>'
+ '<p style="padding-left:30px;">This content requires the Adobe Flash Player.'
+ '<a href="http://www.adobe.com/go/getflashplayer/">Get Flash</a></p></div>';
	document.write(alternateContent);  // insert non-flash content
}
// -->

