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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
<!-- saved from url=(0059)https://www.keithv.com/software/nasatlx/nasatlx_german.html -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>NASA Task Load Index</title>
<!--
This implements the NASA TLX via a single web page using JavaScript.
It first collects the user's rating for 6 scale, the user can
click on one of 20 different positions equating to a rating of 5-100
in increments of 5. The user then selects the more important scale
in 15 pairings presented in random order.
Copyright 2011 by Keith Vertanen
http://www.keithv.com/software/nasa_tlx
German translation by Christian Lehsing and Katharina Seifert.
-->
<script language="JavaScript" type="text/javascript">
<!--
// Create a set of parallel arrays for each of the scales
var scale = new Array();
var left = new Array();
var right = new Array();
var def = new Array();
var NUM_SCALES = 6;
scale[0] = "Geistige Anforderung";
left[0] = "Gering";
right[0] = "Hoch";
def[0] = "Wie viel geistige Anforderung war bei der Informationsaufnahme und bei der Informationsverarbeitung erforderlich (z.B. Denken, Entscheiden, Rechnen, Erinnern, Hinsehen, Suchen ...)? War die Aufgabe leicht oder anspruchsvoll, einfach oder komplex, erfordert sie hohe Genauigkeit oder ist sie fehlertolerant?";
scale[1] = "Krperliche Anforderung";
left[1] = "Gering";
right[1] = "Hoch";
def[1] = "Wie viel krperliche Aktivitt war erforderlich (z.B. ziehen, drcken, drehen, steuern, aktivieren ...)? War die Aufgabe leicht oder schwer, einfach oder anstrengend, erholsam oder mhselig?";
scale[2] = "Zeitliche Anforderung";
left[2] = "Gering";
right[2] = "Hoch";
def[2] = "Wie viel Zeitdruck empfanden Sie hinsichtlich der Hufigkeit oder dem Takt mit dem die Aufgaben oder Aufgabenelemente auftraten? War die Aufgabe langsam und geruhsam oder schnell und hektisch?";
scale[3] = "Leistung";
left[3] = "Gut";
right[3] = "Schlecht";
def[3] = "Wie erfolgreich haben Sie Ihrer Meinung nach die vom Versuchsleiter (oder Ihnen selbst) gesetzten Ziele erreicht? Wie zufrieden waren Sie mit Ihrer Leistung bei der Verfolgung dieser Ziele?";
scale[4] = "Anstrengung";
left[4] = "Gering";
right[4] = "Hoch";
def[4] = "Wie hart mussten Sie arbeiten, um Ihren Grad an Aufgabenerfllung zu erreichen?";
scale[5] = "Frustration";
left[5] = "Gering";
right[5] = "Hoch";
def[5] = "Wie unsicher, entmutigt, irritiert, gestresst und verrgert (versus sicher, besttigt, zufrieden, entspannt und zufrieden mit sich selbst) fhlten Sie sich whrend der Aufgabe?";
// Pairs of factors in order in the original instructions, numbers
// refer to the index in the scale, left, right, def arrays.
var pair = new Array();
pair[0] = "4 3";
pair[1] = "2 5";
pair[2] = "2 4";
pair[3] = "1 5";
pair[4] = "3 5";
pair[5] = "1 2";
pair[6] = "1 3";
pair[7] = "2 0";
pair[8] = "5 4";
pair[9] = "3 0";
pair[10] = "3 2";
pair[11] = "0 4";
pair[12] = "0 1";
pair[13] = "4 1";
pair[14] = "5 0";
// Variable where the results end up
var results_rating = new Array();
var results_tally = new Array();
var results_weight = new Array();
var results_overall;
var pair_num = 0;
for (var i = 0; i < NUM_SCALES; i++)
results_tally[i] = 0;
// Used to randomize the pairings presented to the user
function randOrd()
{
return (Math.round(Math.random())-0.5);
}
// Make sure things are good and mixed
for (i = 0; i < 100; i++)
{
pair.sort(randOrd);
}
// They click on a scale entry
function scaleClick(index, val)
{
results_rating[index] = val;
// Turn background color to white for all cells
for (i = 5; i <= 100; i += 5)
{
var top = "t_" + index + "_" + i;
var bottom = "b_" + index + "_" + i;
document.getElementById(top).bgColor='#FFFFFF';
document.getElementById(bottom).bgColor='#FFFFFF';
}
var top = "t_" + index + "_" + val;
var bottom = "b_" + index + "_" + val;
document.getElementById(top).bgColor='#AAAAAA';
document.getElementById(bottom).bgColor='#AAAAAA';
}
// Return the HTML that produces the table for a given scale
function getScaleHTML(index)
{
var result = "";
// Outer table with a column for scale, column for definition
result += '<table><tr><td>';
// Table that generates the scale
result += '<table class="scale">';
// Row 1, just the name of the scale
result += '<tr><td colspan="20" class="heading">' + scale[index] + '</td></tr>';
// Row 2, the top half of the scale increments, 20 total columns
result += '<tr>';
var num = 1;
for (var i = 5; i <= 100; i += 5)
{
result += '<td id="t_' + index + '_' + i + '" class="top' + num + '" onMouseUp="scaleClick(' + index + ', ' + i + ');"></td>';
num++;
if (num > 2)
num = 1;
}
result += '</tr>';
// Row 3, bottom half of the scale increments
result += '<tr>';
for (var i = 5; i <= 100; i += 5)
{
result += '<td id="b_' + index + '_' + i + '" class="bottom" onMouseUp="scaleClick(' + index + ', ' + i + ');"></td>';
}
result += '</tr>';
// Row 4, left and right of range labels
result += '<tr>';
result += '<td colspan="10" class="left">' + left[index] + '</td><td colspan="10" class="right">' + right[index] + '</td>';
result += '</tr></table></td>';
// Now for the definition of the scale
result += '<td class="def">';
result += def[index];
result += '</td></tr></table>';
return result;
}
function onLoad()
{
// Get all the scales ready
for (var i = 0; i < NUM_SCALES; i++)
{
document.getElementById("scale" + i).innerHTML = getScaleHTML(i);
}
}
// Users want to proceed after doing the scales
function buttonPart1()
{
// Check to be sure they click on every scale
for (var i = 0; i < NUM_SCALES; i++)
{
if (!results_rating[i])
{
alert('Es muss ein Wert fr jede Skale ausgewhlt werden!');
return false;
}
}
// Bye bye part 1, hello part 2
document.getElementById('div_part1').style.display = 'none';
document.getElementById('div_part2').style.display = '';
return true;
}
// User done reading the part 2 instructions
function buttonPart2()
{
// Bye bye part 2, hello part 3
document.getElementById('div_part2').style.display = 'none';
document.getElementById('div_part3').style.display = '';
// Set the labels for the buttons
setPairLabels();
return true;
}
// Set the button labels for the pairwise comparison stage
function setPairLabels()
{
var indexes = new Array();
indexes = pair[pair_num].split(" ");
var pair1 = scale[indexes[0]];
var pair2 = scale[indexes[1]];
document.getElementById('pair1').value = pair1;
document.getElementById('pair2').value = pair2;
document.getElementById('pair1_def').innerHTML = def[indexes[0]];
document.getElementById('pair2_def').innerHTML = def[indexes[1]];
}
// They clicked the top pair button
function buttonPair1()
{
var indexes = new Array();
indexes = pair[pair_num].split(" ");
results_tally[indexes[0]]++;
nextPair();
return true;
}
// They clicked the bottom pair button
function buttonPair2()
{
var indexes = new Array();
indexes = pair[pair_num].split(" ");
results_tally[indexes[1]]++;
nextPair();
return true;
}
// Compute the weights and the final score
function calcResults()
{
results_overall = 0.0;
for (var i = 0; i < NUM_SCALES; i++)
{
results_weight[i] = results_tally[i] / 15.0;
results_overall += results_weight[i] * results_rating[i];
}
}
// Output the table of results
function getResultsHTML()
{
var result = "";
result += "<table><tr><td></td><td>Bewertung</td><td>Klicks</td><td>Wichtung</td></tr>";
for (var i = 0; i < NUM_SCALES; i++)
{
result += "<tr>";
result += "<td>";
result += scale[i];
result += "</td>";
result += "<td>";
result += results_rating[i];
result += "</td>";
result += "<td>";
result += results_tally[i];
result += "</td>";
result += "<td>";
result += results_weight[i];
result += "</td>";
result += "</tr>";
}
result += "</table>";
result += "<br/>";
result += "Gesamtbeanspruchung = ";
result += results_overall;
result += "<br/>";
return result;
}
// Move to the next pair
function nextPair()
{
pair_num++;
if (pair_num >= 15)
{
document.getElementById('div_part3').style.display = 'none';
document.getElementById('div_part4').style.display = '';
calcResults();
document.getElementById('div_part4').innerHTML = getResultsHTML();
}
else
{
setPairLabels();
}
}
// -->
</script>
<style>
td.bottom
{
width: 0.6cm;
height: 0.4cm;
border-bottom: 1px solid black;
border-left: 1px solid black;
border-right: 1px solid black;
margin: 0px;
padding: 0px 0px 0px 0px;
}
table.scale
{
margin: 0px;
padding: 0px 0px 0px 0px;
border-collapse: collapse
}
td.top1
{
width: 0.6cm;
height: 0.4cm;
border-top: 1px solid black;
border-left: 1px solid black;
margin: 0px;
padding: 0px 0px 0px 0px;
}
td.top2
{
width: 0.6cm;
height: 0.4cm;
border-top: 1px solid black;
border-right: 1px solid black;
margin: 0px;
padding: 0px 0px 0px 0px;
}
td.heading
{
font: Bold 14px Arial, Helvetica, sans-serif;
text-align: center;
}
td.left
{
font: 14px Arial, Helvetica, sans-serif;
}
td.right
{
font: 14px Arial, Helvetica, sans-serif;
text-align: right;
}
td.def
{
width: 12cm;
padding: 0px 0px 0px 20px;
font: 12px Arial, Helvetica, sans-serif;
}
input.pair
{
width: 5cm;
height: 1cm;
font: Bold 14px Arial, Helvetica, sans-serif;
}
</style>
</head>
<body onload="onLoad();">
<div id="div_part1">
Fragebogen - Teil 1 <br>
<br>
Klicken Sie in jeder Skale auf den Punkt, der Ihre Erfahrung im Hinblick auf die Aufgabe am besten verdeutlicht. <br>
<br>
<div id="scale0"><table><tbody><tr><td><table class="scale"><tbody><tr><td colspan="20" class="heading">Geistige Anforderung</td></tr><tr><td id="t_0_5" class="top1" onmouseup="scaleClick(0, 5);"></td><td id="t_0_10" class="top2" onmouseup="scaleClick(0, 10);"></td><td id="t_0_15" class="top1" onmouseup="scaleClick(0, 15);"></td><td id="t_0_20" class="top2" onmouseup="scaleClick(0, 20);"></td><td id="t_0_25" class="top1" onmouseup="scaleClick(0, 25);"></td><td id="t_0_30" class="top2" onmouseup="scaleClick(0, 30);"></td><td id="t_0_35" class="top1" onmouseup="scaleClick(0, 35);"></td><td id="t_0_40" class="top2" onmouseup="scaleClick(0, 40);"></td><td id="t_0_45" class="top1" onmouseup="scaleClick(0, 45);"></td><td id="t_0_50" class="top2" onmouseup="scaleClick(0, 50);"></td><td id="t_0_55" class="top1" onmouseup="scaleClick(0, 55);"></td><td id="t_0_60" class="top2" onmouseup="scaleClick(0, 60);"></td><td id="t_0_65" class="top1" onmouseup="scaleClick(0, 65);"></td><td id="t_0_70" class="top2" onmouseup="scaleClick(0, 70);"></td><td id="t_0_75" class="top1" onmouseup="scaleClick(0, 75);"></td><td id="t_0_80" class="top2" onmouseup="scaleClick(0, 80);"></td><td id="t_0_85" class="top1" onmouseup="scaleClick(0, 85);"></td><td id="t_0_90" class="top2" onmouseup="scaleClick(0, 90);"></td><td id="t_0_95" class="top1" onmouseup="scaleClick(0, 95);"></td><td id="t_0_100" class="top2" onmouseup="scaleClick(0, 100);"></td></tr><tr><td id="b_0_5" class="bottom" onmouseup="scaleClick(0, 5);"></td><td id="b_0_10" class="bottom" onmouseup="scaleClick(0, 10);"></td><td id="b_0_15" class="bottom" onmouseup="scaleClick(0, 15);"></td><td id="b_0_20" class="bottom" onmouseup="scaleClick(0, 20);"></td><td id="b_0_25" class="bottom" onmouseup="scaleClick(0, 25);"></td><td id="b_0_30" class="bottom" onmouseup="scaleClick(0, 30);"></td><td id="b_0_35" class="bottom" onmouseup="scaleClick(0, 35);"></td><td id="b_0_40" class="bottom" onmouseup="scaleClick(0, 40);"></td><td id="b_0_45" class="bottom" onmouseup="scaleClick(0, 45);"></td><td id="b_0_50" class="bottom" onmouseup="scaleClick(0, 50);"></td><td id="b_0_55" class="bottom" onmouseup="scaleClick(0, 55);"></td><td id="b_0_60" class="bottom" onmouseup="scaleClick(0, 60);"></td><td id="b_0_65" class="bottom" onmouseup="scaleClick(0, 65);"></td><td id="b_0_70" class="bottom" onmouseup="scaleClick(0, 70);"></td><td id="b_0_75" class="bottom" onmouseup="scaleClick(0, 75);"></td><td id="b_0_80" class="bottom" onmouseup="scaleClick(0, 80);"></td><td id="b_0_85" class="bottom" onmouseup="scaleClick(0, 85);"></td><td id="b_0_90" class="bottom" onmouseup="scaleClick(0, 90);"></td><td id="b_0_95" class="bottom" onmouseup="scaleClick(0, 95);"></td><td id="b_0_100" class="bottom" onmouseup="scaleClick(0, 100);"></td></tr><tr><td colspan="10" class="left">Gering</td><td colspan="10" class="right">Hoch</td></tr></tbody></table></td><td class="def">Wie viel geistige Anforderung war bei der Informationsaufnahme und bei der Informationsverarbeitung erforderlich (z.B. Denken, Entscheiden, Rechnen, Erinnern, Hinsehen, Suchen ...)? War die Aufgabe leicht oder anspruchsvoll, einfach oder komplex, erfordert sie hohe Genauigkeit oder ist sie fehlertolerant?</td></tr></tbody></table></div>
<div id="scale1"><table><tbody><tr><td><table class="scale"><tbody><tr><td colspan="20" class="heading">Krperliche Anforderung</td></tr><tr><td id="t_1_5" class="top1" onmouseup="scaleClick(1, 5);"></td><td id="t_1_10" class="top2" onmouseup="scaleClick(1, 10);"></td><td id="t_1_15" class="top1" onmouseup="scaleClick(1, 15);"></td><td id="t_1_20" class="top2" onmouseup="scaleClick(1, 20);"></td><td id="t_1_25" class="top1" onmouseup="scaleClick(1, 25);"></td><td id="t_1_30" class="top2" onmouseup="scaleClick(1, 30);"></td><td id="t_1_35" class="top1" onmouseup="scaleClick(1, 35);"></td><td id="t_1_40" class="top2" onmouseup="scaleClick(1, 40);"></td><td id="t_1_45" class="top1" onmouseup="scaleClick(1, 45);"></td><td id="t_1_50" class="top2" onmouseup="scaleClick(1, 50);"></td><td id="t_1_55" class="top1" onmouseup="scaleClick(1, 55);"></td><td id="t_1_60" class="top2" onmouseup="scaleClick(1, 60);"></td><td id="t_1_65" class="top1" onmouseup="scaleClick(1, 65);"></td><td id="t_1_70" class="top2" onmouseup="scaleClick(1, 70);"></td><td id="t_1_75" class="top1" onmouseup="scaleClick(1, 75);"></td><td id="t_1_80" class="top2" onmouseup="scaleClick(1, 80);"></td><td id="t_1_85" class="top1" onmouseup="scaleClick(1, 85);"></td><td id="t_1_90" class="top2" onmouseup="scaleClick(1, 90);"></td><td id="t_1_95" class="top1" onmouseup="scaleClick(1, 95);"></td><td id="t_1_100" class="top2" onmouseup="scaleClick(1, 100);"></td></tr><tr><td id="b_1_5" class="bottom" onmouseup="scaleClick(1, 5);"></td><td id="b_1_10" class="bottom" onmouseup="scaleClick(1, 10);"></td><td id="b_1_15" class="bottom" onmouseup="scaleClick(1, 15);"></td><td id="b_1_20" class="bottom" onmouseup="scaleClick(1, 20);"></td><td id="b_1_25" class="bottom" onmouseup="scaleClick(1, 25);"></td><td id="b_1_30" class="bottom" onmouseup="scaleClick(1, 30);"></td><td id="b_1_35" class="bottom" onmouseup="scaleClick(1, 35);"></td><td id="b_1_40" class="bottom" onmouseup="scaleClick(1, 40);"></td><td id="b_1_45" class="bottom" onmouseup="scaleClick(1, 45);"></td><td id="b_1_50" class="bottom" onmouseup="scaleClick(1, 50);"></td><td id="b_1_55" class="bottom" onmouseup="scaleClick(1, 55);"></td><td id="b_1_60" class="bottom" onmouseup="scaleClick(1, 60);"></td><td id="b_1_65" class="bottom" onmouseup="scaleClick(1, 65);"></td><td id="b_1_70" class="bottom" onmouseup="scaleClick(1, 70);"></td><td id="b_1_75" class="bottom" onmouseup="scaleClick(1, 75);"></td><td id="b_1_80" class="bottom" onmouseup="scaleClick(1, 80);"></td><td id="b_1_85" class="bottom" onmouseup="scaleClick(1, 85);"></td><td id="b_1_90" class="bottom" onmouseup="scaleClick(1, 90);"></td><td id="b_1_95" class="bottom" onmouseup="scaleClick(1, 95);"></td><td id="b_1_100" class="bottom" onmouseup="scaleClick(1, 100);"></td></tr><tr><td colspan="10" class="left">Gering</td><td colspan="10" class="right">Hoch</td></tr></tbody></table></td><td class="def">Wie viel krperliche Aktivitt war erforderlich (z.B. ziehen, drcken, drehen, steuern, aktivieren ...)? War die Aufgabe leicht oder schwer, einfach oder anstrengend, erholsam oder mhselig?</td></tr></tbody></table></div>
<div id="scale2"><table><tbody><tr><td><table class="scale"><tbody><tr><td colspan="20" class="heading">Zeitliche Anforderung</td></tr><tr><td id="t_2_5" class="top1" onmouseup="scaleClick(2, 5);"></td><td id="t_2_10" class="top2" onmouseup="scaleClick(2, 10);"></td><td id="t_2_15" class="top1" onmouseup="scaleClick(2, 15);"></td><td id="t_2_20" class="top2" onmouseup="scaleClick(2, 20);"></td><td id="t_2_25" class="top1" onmouseup="scaleClick(2, 25);"></td><td id="t_2_30" class="top2" onmouseup="scaleClick(2, 30);"></td><td id="t_2_35" class="top1" onmouseup="scaleClick(2, 35);"></td><td id="t_2_40" class="top2" onmouseup="scaleClick(2, 40);"></td><td id="t_2_45" class="top1" onmouseup="scaleClick(2, 45);"></td><td id="t_2_50" class="top2" onmouseup="scaleClick(2, 50);"></td><td id="t_2_55" class="top1" onmouseup="scaleClick(2, 55);"></td><td id="t_2_60" class="top2" onmouseup="scaleClick(2, 60);"></td><td id="t_2_65" class="top1" onmouseup="scaleClick(2, 65);"></td><td id="t_2_70" class="top2" onmouseup="scaleClick(2, 70);"></td><td id="t_2_75" class="top1" onmouseup="scaleClick(2, 75);"></td><td id="t_2_80" class="top2" onmouseup="scaleClick(2, 80);"></td><td id="t_2_85" class="top1" onmouseup="scaleClick(2, 85);"></td><td id="t_2_90" class="top2" onmouseup="scaleClick(2, 90);"></td><td id="t_2_95" class="top1" onmouseup="scaleClick(2, 95);"></td><td id="t_2_100" class="top2" onmouseup="scaleClick(2, 100);"></td></tr><tr><td id="b_2_5" class="bottom" onmouseup="scaleClick(2, 5);"></td><td id="b_2_10" class="bottom" onmouseup="scaleClick(2, 10);"></td><td id="b_2_15" class="bottom" onmouseup="scaleClick(2, 15);"></td><td id="b_2_20" class="bottom" onmouseup="scaleClick(2, 20);"></td><td id="b_2_25" class="bottom" onmouseup="scaleClick(2, 25);"></td><td id="b_2_30" class="bottom" onmouseup="scaleClick(2, 30);"></td><td id="b_2_35" class="bottom" onmouseup="scaleClick(2, 35);"></td><td id="b_2_40" class="bottom" onmouseup="scaleClick(2, 40);"></td><td id="b_2_45" class="bottom" onmouseup="scaleClick(2, 45);"></td><td id="b_2_50" class="bottom" onmouseup="scaleClick(2, 50);"></td><td id="b_2_55" class="bottom" onmouseup="scaleClick(2, 55);"></td><td id="b_2_60" class="bottom" onmouseup="scaleClick(2, 60);"></td><td id="b_2_65" class="bottom" onmouseup="scaleClick(2, 65);"></td><td id="b_2_70" class="bottom" onmouseup="scaleClick(2, 70);"></td><td id="b_2_75" class="bottom" onmouseup="scaleClick(2, 75);"></td><td id="b_2_80" class="bottom" onmouseup="scaleClick(2, 80);"></td><td id="b_2_85" class="bottom" onmouseup="scaleClick(2, 85);"></td><td id="b_2_90" class="bottom" onmouseup="scaleClick(2, 90);"></td><td id="b_2_95" class="bottom" onmouseup="scaleClick(2, 95);"></td><td id="b_2_100" class="bottom" onmouseup="scaleClick(2, 100);"></td></tr><tr><td colspan="10" class="left">Gering</td><td colspan="10" class="right">Hoch</td></tr></tbody></table></td><td class="def">Wie viel Zeitdruck empfanden Sie hinsichtlich der Hufigkeit oder dem Takt mit dem die Aufgaben oder Aufgabenelemente auftraten? War die Aufgabe langsam und geruhsam oder schnell und hektisch?</td></tr></tbody></table></div>
<div id="scale3"><table><tbody><tr><td><table class="scale"><tbody><tr><td colspan="20" class="heading">Leistung</td></tr><tr><td id="t_3_5" class="top1" onmouseup="scaleClick(3, 5);"></td><td id="t_3_10" class="top2" onmouseup="scaleClick(3, 10);"></td><td id="t_3_15" class="top1" onmouseup="scaleClick(3, 15);"></td><td id="t_3_20" class="top2" onmouseup="scaleClick(3, 20);"></td><td id="t_3_25" class="top1" onmouseup="scaleClick(3, 25);"></td><td id="t_3_30" class="top2" onmouseup="scaleClick(3, 30);"></td><td id="t_3_35" class="top1" onmouseup="scaleClick(3, 35);"></td><td id="t_3_40" class="top2" onmouseup="scaleClick(3, 40);"></td><td id="t_3_45" class="top1" onmouseup="scaleClick(3, 45);"></td><td id="t_3_50" class="top2" onmouseup="scaleClick(3, 50);"></td><td id="t_3_55" class="top1" onmouseup="scaleClick(3, 55);"></td><td id="t_3_60" class="top2" onmouseup="scaleClick(3, 60);"></td><td id="t_3_65" class="top1" onmouseup="scaleClick(3, 65);"></td><td id="t_3_70" class="top2" onmouseup="scaleClick(3, 70);"></td><td id="t_3_75" class="top1" onmouseup="scaleClick(3, 75);"></td><td id="t_3_80" class="top2" onmouseup="scaleClick(3, 80);"></td><td id="t_3_85" class="top1" onmouseup="scaleClick(3, 85);"></td><td id="t_3_90" class="top2" onmouseup="scaleClick(3, 90);"></td><td id="t_3_95" class="top1" onmouseup="scaleClick(3, 95);"></td><td id="t_3_100" class="top2" onmouseup="scaleClick(3, 100);"></td></tr><tr><td id="b_3_5" class="bottom" onmouseup="scaleClick(3, 5);"></td><td id="b_3_10" class="bottom" onmouseup="scaleClick(3, 10);"></td><td id="b_3_15" class="bottom" onmouseup="scaleClick(3, 15);"></td><td id="b_3_20" class="bottom" onmouseup="scaleClick(3, 20);"></td><td id="b_3_25" class="bottom" onmouseup="scaleClick(3, 25);"></td><td id="b_3_30" class="bottom" onmouseup="scaleClick(3, 30);"></td><td id="b_3_35" class="bottom" onmouseup="scaleClick(3, 35);"></td><td id="b_3_40" class="bottom" onmouseup="scaleClick(3, 40);"></td><td id="b_3_45" class="bottom" onmouseup="scaleClick(3, 45);"></td><td id="b_3_50" class="bottom" onmouseup="scaleClick(3, 50);"></td><td id="b_3_55" class="bottom" onmouseup="scaleClick(3, 55);"></td><td id="b_3_60" class="bottom" onmouseup="scaleClick(3, 60);"></td><td id="b_3_65" class="bottom" onmouseup="scaleClick(3, 65);"></td><td id="b_3_70" class="bottom" onmouseup="scaleClick(3, 70);"></td><td id="b_3_75" class="bottom" onmouseup="scaleClick(3, 75);"></td><td id="b_3_80" class="bottom" onmouseup="scaleClick(3, 80);"></td><td id="b_3_85" class="bottom" onmouseup="scaleClick(3, 85);"></td><td id="b_3_90" class="bottom" onmouseup="scaleClick(3, 90);"></td><td id="b_3_95" class="bottom" onmouseup="scaleClick(3, 95);"></td><td id="b_3_100" class="bottom" onmouseup="scaleClick(3, 100);"></td></tr><tr><td colspan="10" class="left">Gut</td><td colspan="10" class="right">Schlecht</td></tr></tbody></table></td><td class="def">Wie erfolgreich haben Sie Ihrer Meinung nach die vom Versuchsleiter (oder Ihnen selbst) gesetzten Ziele erreicht? Wie zufrieden waren Sie mit Ihrer Leistung bei der Verfolgung dieser Ziele?</td></tr></tbody></table></div>
<div id="scale4"><table><tbody><tr><td><table class="scale"><tbody><tr><td colspan="20" class="heading">Anstrengung</td></tr><tr><td id="t_4_5" class="top1" onmouseup="scaleClick(4, 5);"></td><td id="t_4_10" class="top2" onmouseup="scaleClick(4, 10);"></td><td id="t_4_15" class="top1" onmouseup="scaleClick(4, 15);"></td><td id="t_4_20" class="top2" onmouseup="scaleClick(4, 20);"></td><td id="t_4_25" class="top1" onmouseup="scaleClick(4, 25);"></td><td id="t_4_30" class="top2" onmouseup="scaleClick(4, 30);"></td><td id="t_4_35" class="top1" onmouseup="scaleClick(4, 35);"></td><td id="t_4_40" class="top2" onmouseup="scaleClick(4, 40);"></td><td id="t_4_45" class="top1" onmouseup="scaleClick(4, 45);"></td><td id="t_4_50" class="top2" onmouseup="scaleClick(4, 50);"></td><td id="t_4_55" class="top1" onmouseup="scaleClick(4, 55);"></td><td id="t_4_60" class="top2" onmouseup="scaleClick(4, 60);"></td><td id="t_4_65" class="top1" onmouseup="scaleClick(4, 65);"></td><td id="t_4_70" class="top2" onmouseup="scaleClick(4, 70);"></td><td id="t_4_75" class="top1" onmouseup="scaleClick(4, 75);"></td><td id="t_4_80" class="top2" onmouseup="scaleClick(4, 80);"></td><td id="t_4_85" class="top1" onmouseup="scaleClick(4, 85);"></td><td id="t_4_90" class="top2" onmouseup="scaleClick(4, 90);"></td><td id="t_4_95" class="top1" onmouseup="scaleClick(4, 95);"></td><td id="t_4_100" class="top2" onmouseup="scaleClick(4, 100);"></td></tr><tr><td id="b_4_5" class="bottom" onmouseup="scaleClick(4, 5);"></td><td id="b_4_10" class="bottom" onmouseup="scaleClick(4, 10);"></td><td id="b_4_15" class="bottom" onmouseup="scaleClick(4, 15);"></td><td id="b_4_20" class="bottom" onmouseup="scaleClick(4, 20);"></td><td id="b_4_25" class="bottom" onmouseup="scaleClick(4, 25);"></td><td id="b_4_30" class="bottom" onmouseup="scaleClick(4, 30);"></td><td id="b_4_35" class="bottom" onmouseup="scaleClick(4, 35);"></td><td id="b_4_40" class="bottom" onmouseup="scaleClick(4, 40);"></td><td id="b_4_45" class="bottom" onmouseup="scaleClick(4, 45);"></td><td id="b_4_50" class="bottom" onmouseup="scaleClick(4, 50);"></td><td id="b_4_55" class="bottom" onmouseup="scaleClick(4, 55);"></td><td id="b_4_60" class="bottom" onmouseup="scaleClick(4, 60);"></td><td id="b_4_65" class="bottom" onmouseup="scaleClick(4, 65);"></td><td id="b_4_70" class="bottom" onmouseup="scaleClick(4, 70);"></td><td id="b_4_75" class="bottom" onmouseup="scaleClick(4, 75);"></td><td id="b_4_80" class="bottom" onmouseup="scaleClick(4, 80);"></td><td id="b_4_85" class="bottom" onmouseup="scaleClick(4, 85);"></td><td id="b_4_90" class="bottom" onmouseup="scaleClick(4, 90);"></td><td id="b_4_95" class="bottom" onmouseup="scaleClick(4, 95);"></td><td id="b_4_100" class="bottom" onmouseup="scaleClick(4, 100);"></td></tr><tr><td colspan="10" class="left">Gering</td><td colspan="10" class="right">Hoch</td></tr></tbody></table></td><td class="def">Wie hart mussten Sie arbeiten, um Ihren Grad an Aufgabenerfllung zu erreichen?</td></tr></tbody></table></div>
<div id="scale5"><table><tbody><tr><td><table class="scale"><tbody><tr><td colspan="20" class="heading">Frustration</td></tr><tr><td id="t_5_5" class="top1" onmouseup="scaleClick(5, 5);"></td><td id="t_5_10" class="top2" onmouseup="scaleClick(5, 10);"></td><td id="t_5_15" class="top1" onmouseup="scaleClick(5, 15);"></td><td id="t_5_20" class="top2" onmouseup="scaleClick(5, 20);"></td><td id="t_5_25" class="top1" onmouseup="scaleClick(5, 25);"></td><td id="t_5_30" class="top2" onmouseup="scaleClick(5, 30);"></td><td id="t_5_35" class="top1" onmouseup="scaleClick(5, 35);"></td><td id="t_5_40" class="top2" onmouseup="scaleClick(5, 40);"></td><td id="t_5_45" class="top1" onmouseup="scaleClick(5, 45);"></td><td id="t_5_50" class="top2" onmouseup="scaleClick(5, 50);"></td><td id="t_5_55" class="top1" onmouseup="scaleClick(5, 55);"></td><td id="t_5_60" class="top2" onmouseup="scaleClick(5, 60);"></td><td id="t_5_65" class="top1" onmouseup="scaleClick(5, 65);"></td><td id="t_5_70" class="top2" onmouseup="scaleClick(5, 70);"></td><td id="t_5_75" class="top1" onmouseup="scaleClick(5, 75);"></td><td id="t_5_80" class="top2" onmouseup="scaleClick(5, 80);"></td><td id="t_5_85" class="top1" onmouseup="scaleClick(5, 85);"></td><td id="t_5_90" class="top2" onmouseup="scaleClick(5, 90);"></td><td id="t_5_95" class="top1" onmouseup="scaleClick(5, 95);"></td><td id="t_5_100" class="top2" onmouseup="scaleClick(5, 100);"></td></tr><tr><td id="b_5_5" class="bottom" onmouseup="scaleClick(5, 5);"></td><td id="b_5_10" class="bottom" onmouseup="scaleClick(5, 10);"></td><td id="b_5_15" class="bottom" onmouseup="scaleClick(5, 15);"></td><td id="b_5_20" class="bottom" onmouseup="scaleClick(5, 20);"></td><td id="b_5_25" class="bottom" onmouseup="scaleClick(5, 25);"></td><td id="b_5_30" class="bottom" onmouseup="scaleClick(5, 30);"></td><td id="b_5_35" class="bottom" onmouseup="scaleClick(5, 35);"></td><td id="b_5_40" class="bottom" onmouseup="scaleClick(5, 40);"></td><td id="b_5_45" class="bottom" onmouseup="scaleClick(5, 45);"></td><td id="b_5_50" class="bottom" onmouseup="scaleClick(5, 50);"></td><td id="b_5_55" class="bottom" onmouseup="scaleClick(5, 55);"></td><td id="b_5_60" class="bottom" onmouseup="scaleClick(5, 60);"></td><td id="b_5_65" class="bottom" onmouseup="scaleClick(5, 65);"></td><td id="b_5_70" class="bottom" onmouseup="scaleClick(5, 70);"></td><td id="b_5_75" class="bottom" onmouseup="scaleClick(5, 75);"></td><td id="b_5_80" class="bottom" onmouseup="scaleClick(5, 80);"></td><td id="b_5_85" class="bottom" onmouseup="scaleClick(5, 85);"></td><td id="b_5_90" class="bottom" onmouseup="scaleClick(5, 90);"></td><td id="b_5_95" class="bottom" onmouseup="scaleClick(5, 95);"></td><td id="b_5_100" class="bottom" onmouseup="scaleClick(5, 100);"></td></tr><tr><td colspan="10" class="left">Gering</td><td colspan="10" class="right">Hoch</td></tr></tbody></table></td><td class="def">Wie unsicher, entmutigt, irritiert, gestresst und verrgert (versus sicher, besttigt, zufrieden, entspannt und zufrieden mit sich selbst) fhlten Sie sich whrend der Aufgabe?</td></tr></tbody></table></div>
<br>
<!--<input class="next" id="next" type="button" value="Continue >>" onclick="buttonPart1();">-->
</div>
<div id="div_part2" style="display:none">
Fragebogen - Teil 2 <br>
<br>
Klicken Sie in jedem der 15 nachfolgenden Fenster auf die Beanspruchungsdimension,
die fr das Gesamtempfinden hinsichtlich der Aufgabe die jeweils bedeutsamere war.
<br>
<br>
<input class="next" id="next" type="button" value="Continue >>" onclick="buttonPart2();">
</div>
<div id="div_part3" style="display:none">
Fragebogen - Teil 2 <br>
<br>
<br>
Klicken Sie auf die Dimension, die den jeweils wichtigeren Beitrag zur Arbeitsbelastung hinsichtlich der Aufgabe darstellt.
<br>
<br>
<table>
<tbody><tr>
<td><input class="pair" id="pair1" type="button" value="" onclick="buttonPair1();"> </td>
<td class="def"><div id="pair1_def"></div></td>
</tr>
<tr>
<td align="center"> or </td>
<td></td>
</tr>
<tr>
<td><input class="pair" id="pair2" type="button" value="" onclick="buttonPair2();"></td>
<td class="def"><div id="pair2_def"></div></td>
</tr>
</tbody></table>
</div>
<div id="div_part4" style="display:none">
</div>
</body></html>