forked from IMAGINARY/cinderella-applets-2011-edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
showappletSmall.html
69 lines (54 loc) · 1.64 KB
/
showappletSmall.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<HEAD>
<TITLE>Cinderella Applet Sammlung</TITLE>
<META author = "Jürgen Richter-Gebert(richter)">
<META keywords = "cinderella export interactive geometry construction">
<link rel="StyleSheet" href="cinderella.css" type="text/css" />
<script type="text/javascript" src="js/functions.js">
</script>
</HEAD>
<BODY class="index" onmousedown = "return false;" >
<!--div style="position:absolute;top:0;left:0;">
<img src="Back.png" width=1920 height=1080>
</div>
<div style="position:absolute;top:5;left:5;">
<img src="BackDark.png" width=1910 height=1070>
</div-->
<div style="position:absolute;top:30;left:0;">
<script type="text/javascript">
var t;
function goback()
{
location.href='index_de.html';
}
function alive()
{
// clearTimeout(t);
// t=setTimeout("goback()",100000);
}
alive()
</script>
<!--div style="padding-left:33px;font-size:40px;">Cinderella: <script type="text/javascript">document.write(decodeURIComponent(gup("title")));</script></div-->
<br/>
<script type="text/javascript">
var lang = gup( "lang" );
if( lang == "" )
lang = "de";
var which = gup( "which" );
var button_type = gup( "button_type" );
if( button_type == "" )
button_type = "info";
</script>
<br/>
<br/>
</div>
<div style="position:absolute;top:-20;left:100;">
<iframe id="appletFrame" width="1290" height="1000" frameborder="0" scrolling="no ">Cinderella-Applet</iframe>
</div>
<script type="text/javascript">
var appletUrl = lang + "/" + which + "_applet.html";
var infoUrl = lang + "/" + which + "_text.html";
document.getElementById( "appletFrame" ).src = appletUrl;
document.getElementById( "infoFrame" ).src = infoUrl;
</script>
</BODY>
</HTML>