﻿function FlashCodeMap($flashname, $width, $height)
	{
		document.write('<object width=' + $width + ' height='+ $height +' align="top" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">');
		document.write('<param value='+ $flashname +' name="movie">');
		document.write('<param value="#FFFFFF" name="BGCOLOR">');
		document.write('<param value="high" name="quality">');
		document.write('<param value="noborder" name="SCALE">');
		document.write('<embed width=' + $width + ' height='+ $height +' align="top" scale="noborder" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" wmode="transparent" quality="high" src='+ $flashname +'></embed>');
		document.write('</object>');
	}