1.
<body>
<div id="one">HTML div</div>
<div id="two">Flash div</div>
<script language="javascript">
if(document.all)
{
w = document.body.clientWidth;
h = document.body.clientHeight;
}
else
{
w = self.innerWidth;
h = self.innerHeight;
}
document.getElementById("one").style.width = w;
document.getElementById("one").style.height = h;
document.getElementById("two").style.width = w;
document.getElementById("two").style.height = h;
</script>
</body>
2.
Flash OBJECT and EMBED tag syntax