1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
|
<script type="text/javascript">
function FrameAendern (URI, start) {
parent[untermenu].location.href = URI;
}
function ZweiFramesBack (start, untermenu) {
Frame2 = parent[untermenu];
parent[start].history.back();
if (!window.opera)
window.setTimeout("Frame2.history.back()", 100);
}
function ZweiFramesForward (start, untermenu) {
Frame2 = parent[untermenu];
parent[start].history.forward();
if (!window.opera)
window.setTimeout("Frame2.history.forward()", 100);
}
</script>
|