function injectGameFLV(flv_url, width, height)
{

	if( width > 640 )
	{
		height *= 640 / width;
		width = 640;
	}
	
	document.write("<object style='margin:0px' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='"+width+"' height='"+height+"'>");
	
	document.write("<param name='movie' value='"+flv_url+"' /><param name='quality' value='high' /><param name='scale' value='exactfit' />");
	document.write("<embed scale='exactfit' style='margin:0px'  allowScriptAccess='always' src='"+flv_url+"' quality='high' width='"+width+"' height='"+height+"' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' /></object>");
}
