don't bother with XHTML ... if you follow the standard for XHTML then your
web page will fail on many many browsers and platforms.
you basically havea choice .. be strictly XHTML conforming .. or have a site
that actually works. You cannot have both. Truct me .. I've battled it for
months. There are browsers that just chuck up their hands with the doctypes
etc required for XHTML and refuse to work.
The best 'standard' I've found for getting your site to work with most
browser is HTML 4.0
This gives me a basic HTML page like this...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"
http://www.w3.org/TR/html40/loose.dtd"> <html>
<head>
<title>Movie1</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca b#version=XX,XX,XX,XX"
id="XXXXXX" width="XXX" height="XXX">
<param name="movie" value="XXXXXX.swf">
<param name="bgcolor" value="#FFFFFF">
<param name="quality" value="high">
<param name="allowscriptaccess" value="samedomain">
<embed type="application/x-shockwave-flash"
pluginspage="
http://www.macromedia.com/go/getflashplayer" width="XXX" height="XXX"
name="XXXXXX" src="XXXXXX.swf"
bgcolor="#FFFFFF" quality="high"
swLiveConnect="true" allowScriptAccess="samedomain"
[quoted text, click to view] ></embed>
</object>
</center>
</body>
</html>
with XXX's filled in appropriately.