function getFlashCode(file, width, height) {
	document.write('' + 
	'<div class="flash-h"> ' +
	'	<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="' + width + '" height="' + height + '">' + 
	'		<param name="movie" value="' + file + '">' + 
	'		<param name="quality" value="High">' + 
	'		<param name="wmode" value="opaque" />' + 
	'		<embed src="' + file + '" type="application/x-shockwave-flash" name="flash" width="' + width + '" height="' + height + '">' + 
	'	</object>' + 
	'</div>');
}
