/*
function writeHomeFlash(flashroot, id, webroot, imagesroot) {
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	// Check to see if the version meets the requirements for playback
	if (hasReqestedVersion) {
		// if we've detected an acceptable version
		var homeFlashTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="750" height="413"><param name="movie" value="'+flashroot+'/home1.swf?id='+id+'&webroot='+webroot+'" /><param name="quality" value="high" /><embed src="'+flashroot+'/home1.swf?id='+id+'&webroot='+webroot+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="750" height="413"></embed></object>';
		document.write(homeFlashTags);
	}
	else {
		// flash is too old or too new that we can't detect the plugin
		var homeAlternateTags = '<img src="'+imagesroot+'/home_flashplaceholder.gif" name="home_flashplaceholder" width="750" height="413" border="0" alt="" usemap="#m_home_flashplaceholder" /><map name="m_home_flashplaceholder"><area shape="poly" coords="18,87,168,87,168,127,18,127,18,87" href="http://www.criderassociates.com/index.cfm/fuseaction/casestudies.home" title="Case Studies" alt="Case Studies" /><area shape="poly" coords="119,137,269,137,269,177,119,177,119,137" href="http://www.criderassociates.com/index.cfm/fuseaction/aboutus.clientlist" title="Client List" alt="Client List" /><area shape="poly" coords="312,14,462,14,462,54,312,54,312,14" href="http://www.criderassociates.com/index.cfm/fuseaction/aboutus.awards" title="Awards &amp; Praise" alt="Awards &amp; Praise" /><area shape="poly" coords="596,50,746,50,746,90,596,90,596,50" href="http://www.criderassociates.com/index.cfm/fuseaction/aboutus.history" title="History" alt="History" /><area shape="poly" coords="274,373,344,373,344,393,274,393,274,373" href="http://www.criderassociates.com/index.cfm/fuseaction/programs.home" title="Programs" alt="Programs" /><area shape="poly" coords="345,373,415,373,415,393,345,393,345,373" href="http://www.criderassociates.com/index.cfm/fuseaction/materials.home" title="Materials" alt="Materials" /><area shape="poly" coords="437,373,479,373,479,393,437,393,437,373" href="http://www.criderassociates.com/index.cfm/fuseaction/print.home" title="Print" alt="Print" /><area shape="poly" coords="481,373,531,373,531,393,481,393,481,373" href="http://www.criderassociates.com/index.cfm/fuseaction/print.home" title="Online" alt="Online" /><area shape="poly" coords="597,373,657,373,657,393,597,393,597,373" href="http://www.criderassociates.com/index.cfm/fuseaction/services.home" title="Services" alt="Services" /><area shape="poly" coords="660,373,725,373,725,393,660,393,660,373" href="http://www.criderassociates.com/index.cfm/fuseaction/aboutus.home" title="About Us" alt="About Us" /></map>';
		document.write(homeAlternateTags);
	}
}
*/
function writeHomeFlash(flashroot, id, webroot, imagesroot) {
	swfobject.embedSWF(flashroot+"/home1.swf?id="+id+"&webroot="+webroot, "home-flash", "750", "413", "7.0.0", "expressInstall.swf", {}, {wmode:"transparent"});
}