| OLD | NEW |
| 1 <script type="text/javascript"> | 1 <script type="text/javascript"> |
| 2 function SetSrc(src) { | 2 function SetSrc(src) { |
| 3 plugin = document.getElementById('plugin'); | 3 plugin = document.getElementById('plugin'); |
| 4 plugin.src = src; | 4 plugin.src = src; |
| 5 } | 5 } |
| 6 function SetSize(w, h) { | 6 function SetSize(w, h) { |
| 7 plugin = document.getElementById('plugin'); | 7 plugin = document.getElementById('plugin'); |
| 8 plugin.width = w; | 8 plugin.width = w; |
| 9 plugin.height = h; | 9 plugin.height = h; |
| 10 } | 10 } |
| 11 </script> | 11 </script> |
| 12 | 12 |
| 13 <!-- The plugin size is same as the browser's size --> | 13 <!-- The plugin size is same as the browser's size --> |
| 14 <object id="plugin" | 14 <object id="plugin" |
| 15 tabindex="0" | 15 tabindex="0" |
| 16 type="application/new-browser-plugin" | 16 type="application/browser-plugin" |
| 17 style="height: 100%; width: 100%; border: 0px"></object> | 17 style="height: 100%; width: 100%; border: 0px"></object> |
| OLD | NEW |