/*
'---- ------------------------------------------------------------------
'---- File Name:		scrSiteDisplayFlash.js                              	
'---- Date:			10/15/03                                   	
'---- Copyright:		SVM Copyright 2003                        	
'---- Template Author:	Emily Treganowan  
'---- Script Author:	              					
'---- Purpose:			Elm City Display Flash Page			                        			
'---- Notes:				
'---- ------------------------------------------------------------------
*/
function displayFlash() {
cookString = "?" + cookString;
			document.write('<OBJECT'
				+ ' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
				+ ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"'
				+ ' ID="home"'
				+ ' Name="home"'
				+ ' WIDTH=' + flWidth
				+ ' HEIGHT=' + flHeight + '>'
				+ '<PARAM NAME=movie VALUE="' + flName + cookString + '">'
				+ '<PARAM NAME=quality VALUE=high>'
				+ '<PARAM NAME=scale VALUE=noborder>'
				+ '<PARAM NAME=align VALUE=left>'
				+ '<PARAM NAME=bgcolor VALUE=' + flColor + '>'
				+ '<EMBED src="' + flName + cookString + '"'
				+ ' name="home"'
				+ ' quality=high bgcolor=' + flColor
				+ ' WIDTH=' + flWidth
				+ ' HEIGHT=' + flHeight + ' swLiveConnect=true'
				+ ' TYPE="application/x-shockwave-flash"'
				+ ' SCALE="noborder"'
				+ ' ALIGN="left"'
				+ ' SALIGN="TL"'
				+ ' PLUGINSPAGE="http://www.macromedia.com/shockwave/'
				+ 'download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
				+ '</EMBED></OBJECT>'
				)
}

function displayFlashDetection() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0" width="80" height="80">');
	document.write('<param name="movie" value="/flash/flash_detection.swf?flashContentURL='+flashPage+'&altContentURL='+nonFlashPage+'&contentVersion=5&contentMajorRevision=0&contentMinorRevision=0&allowFlashAutoInstall=true">');
	document.write('<param name="quality" value="low">');
	document.write('<param name=FlashVars value="flashContentURL='+flashPage+'&altContentURL='+nonFlashPage+'&contentVersion=5&contentMajorRevision=0&contentMinorRevision=0&allowFlashAutoInstall=true"><param name="BGCOLOR" value="#000000">');
	document.write('<embed src="/flash/flash_detection.swf?flashContentURL='+flashPage+'&altContentURL='+nonFlashPage+'&contentVersion=5&contentMajorRevision=0&contentMinorRevision=0&allowFlashAutoInstall=false" width="80" height="80" FlashVars="flashContentURL='+flashPage+'&altContentURL='+nonFlashPage+'&contentVersion=5&contentMajorRevision=0&contentMinorRevision=0&allowFlashAutoInstall=false" quality="low" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" bgcolor="#000000">');
	document.write('</embed>');
	document.write('</object>');
}