function runFlashMovie(movie,height,width)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' +
					'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,24" ' +
					'   width="' + width + '" height="' + height + '"> ' +
					'<param name="movie" value="' + movie + '"  /> ' +
					'<param name="quality" value="high"  /> ' +
					'<param name="menu" value="false"  /> ' +
					'<param name="wmode" value="transparent"> ' + 
					'<!--[if !IE]> <--> ' +
					'<object data="' + movie + '" ' +
					'		width="' + width + '" height="' + height + '" type="application/x-shockwave-flash"> ' +
					 '<param name="quality" value="high"  /> ' +
					 '<param name="menu" value="false"  /> ' +
					 '<param name="wmode" value="transparent"> ' +
					 '<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer"  /> ' +
					 'FAIL (the browser should render some flash content, not this). ' +
					'</object> ' +
					'<!--> <![endif]--> ' +
				   '</object>');
}