HTML Validation
As we used the Embed tag for embed the Flash files , on home or master page as this tag not support for HTML Validation (W3C) . but still we used this tag for showing flash file , if you want to do HTML validation for your site - this makes an error , so you have to avoid this.
Instead use Object tag for placing Flash files
Example:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" data="the-swf-file.swf" type="application/x-shockwave-flash" width="600" height="420"> <param name="movie" value="the-swf-file.swf" /> <param name="quality" value="high" /> </object>
Read more »