<script type="text/javascript">
function SetSrc(src) {
  plugin = document.getElementById('plugin');
  plugin.src = src;
}
function SetSize(w, h) {
  plugin = document.getElementById('plugin');
  plugin.width = w;
  plugin.height = h;
}
</script>

<!-- The plugin size is same as the browser's size -->
<object id="plugin"
    tabindex="0"
    type="application/new-browser-plugin"
    style="height: 100%; width: 100%; border: 0px"></object>