-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoy.htm
More file actions
202 lines (151 loc) · 4.76 KB
/
joy.htm
File metadata and controls
202 lines (151 loc) · 4.76 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Kauvar</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<STYLE type=text/css>
a:link { color: #000000; text-decoration=none }
a:visited { color: #0000C0; text-decoration=none }
a:active { color: #0000FF; text-decoration=none }
a:hover { color: #0080FF; text-decoration=none }
body { font-family: Arial, Helvetica, 'Sans Serif'; font-size: 8pt; margin-top: 0em; margin-bottom: 0em; }
h1 { font-size: 200%; margin-top: 0em; margin-bottom: 0em;}
h2 { font-size: 150%;margin-top: 0em; margin-bottom: 0em;}
h3 { font-size: 100%; margin-top: 0em; margin-bottom: 0em;}
p { margin-top: 0em; margin-bottom: 0em; }
* {
font-family: Verdana, Helvetica;
font-size: 10pt;
}
</STYLE>
<script type="text/javascript">
var photos = new Array()
photos[0] = '#barcelona1'
photos[1] = '#florence1'
photos[2] = '#reggioemilia1'
photos[3] = '#florence2'
photos[4] = '#barcelona_boy'
// photos[5] = '#denver'
// photos[6] = '#roy'
// photos[7] = '#john'
var numphotos = 4
var count = -1
function leftArrowPressed() {
count = count - 1
if (count < 0) { count = 0 }
if (count > numphotos) {count = numphotos}
window.location.href=photos[count]
// Your stuff here
}
function rightArrowPressed() {
count = count + 1
if (count < 0) { count = 0 }
if (count > numphotos) {count = numphotos}
window.location.href=photos[count]
// Your stuff here
}
document.onkeydown = function(evt) {
evt = evt || window.event;
switch (evt.keyCode) {
case 37:
leftArrowPressed();
break;
case 39:
rightArrowPressed();
break;
}
};
</script>
<BODY>
<TABLE border=0 width=100% cellspacing=50>
<TR> <!-- title -->
<TD align="center">
<h2>Photographs by Isaac Kauvar<h2>
<p> Use left/right arrow keys to move between images. </p>
</TD>
</TR>
<TR>
<TD align="center">
<div id=barcelona1>
<br>
<p align="center"><a><img width=100% border="0" src="photographs/barcelona1.jpg"></a>
</TD>
</div>
</TR>
<TR>
<TD align="center">
<div id=reggioemilia1>
<br>
<p align="center"><a><img width=100% border="0" src="photographs/reggioemilia1.jpg"></a>
</TD>
</div>
</TR>
<TR>
<TD align="center">
<div id=florence1>
<br>
<p align="center"><a><img width=100% border="0" src="photographs/florence1.jpg"></a>
</TD>
</div>
</TR>
<TR>
<TD align="center">
<div id=florence2>
<br>
<p align="center"><a><img width=100% border="0" src="photographs/florence2.jpg"></a>
</TD>
</div>
</TR>
<TR>
<TD align="center">
<div id=barcelona_boy>
<br>
<p align="center"><a><img width=100% border="0" src="photographs/barcelona_boy.jpg"></a>
</TD>
</div>
</TR>
<!-- <TR>
<TD align="center">
<div id=denver>
<p align="center"><a><img width=100% border="0" src="photographs/denver.jpg"></a>
</TD>
</div>
</TR>
<TR>
<TD align="center">
<div id=roy>
<p align="center"><a><img width=100% border="0" src="photographs/roy.jpg"></a>
</TD>
</div>
</TR>
<TR>
<TD align="center">
<div id=john>
<p align="center"><a><img width=100% border="0" src="photographs/john.jpg"></a>
</TD>
</div>
</TR>
-->
<TR vAlign=top>
<TD align="left" width=100% colspan="1">
</TD>
</TR>
<TR><!-- abstract -->
<TD>
<br>
<br>
</TD>
</TR>
<TR><!-- resources -->
<TD>
Copyright © Isaac Kauvar
<br>
<br>
Contact: <div><tt>ikauvar@<script
type="text/javascript">document.write([('pta' +
/* security */ '´').replace('2', /* by obscurity */
'5').replace('8','1'), 'for', 'd.e' +
'c'.replace('9','10').replace('9', '0'),
'u'].join(';'));</script></tt></div>
</TD>
</TR>
</TABLE>
</BODY></HTML>