function show(i)
{var t="";
if (i==1) t="Zufall!";
else if(i==2) t="Die Dritte hat gelogen!";
else if(i==3) t="W&uuml;rmchen k&ouml;nnen nicht z&auml;hlen!";
else if(i==4) t="Der Epileptiker liegt im Zimmer und zuckt,<br>der Grie&szlig;brei liegt in Zucker und Zimt.";
var win=window.open("","","width=480,height=40,resizable=yes");
win.document.open("text/html");
win.document.writeln('<html><head><title>Antwort</title></head><body style="text-align:center;"><p>&nbsp;</p><p>&nbsp;</p><p>');
win.document.writeln(t);
win.document.writeln("</p><p>&nbsp;</p><form><input type=button value='ok' onclick='self.close()'></form></body></html>");
win.document.close(); return true;}
