Hi there davidwhite,
The following example works in all browsers, except Safari, for which I was unable to find a solution.
[color=navy]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<style type="text/css">
#swf-holder {
width:200px;
border:1px solid #000;
margin:auto;
overflow:hidden;
}
#swf-holder object {
display:block;
width:300px;
height:200px;
border:0;
margin-left:-100px;
}
</style>
</head>
<body>
<div id="swf-holder">
<object type="application/x-shockwave-flash" data="http://www.coothead.co.uk/images/smiles.swf">
<param name="movie" value="http://www.coothead.co.uk/images/smiles.swf">
</object>
</div>
</body>
</html>[/color]
coothead