blob: fb70190a767173c43b5f411923db241b084328da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<script type="text/javascript">
function SetSrc(src) {
var plugin = document.getElementById('plugin');
plugin.src = src;
}
function SetSize(w, h) {
var plugin = document.getElementById('plugin');
plugin.width = w;
plugin.height = h;
}
function Back() {
var plugin = document.getElementById('plugin');
plugin.back();
}
function Forward() {
var plugin = document.getElementById('plugin');
plugin.forward();
}
function Go(relativeIndex) {
var plugin = document.getElementById('plugin');
plugin.go(relativeIndex);
}
</script>
<object id="plugin"
tabindex="0"
type="application/new-browser-plugin"
width="640"
height="480"
border="0px"></object>
|