Hm, blöd, habe das script vergessen anzuhängen. Hier ist es:
<html>
<head>
<title> Licht an </title>
<script language="JavaScript" type="text/javascript">
<!--
function farbzahl(dezzahl)
{
var hex="";
var z1;
var z2;
z1=Math.floor(dezzahl/16);
z2=dezzahl % 16;
if (z1<10) hex=hex+z1;
if (z1==10) hex=hex+"A";
if (z1==11) hex=hex+"B";
if (z1==12) hex=hex+"C";
if (z1==13) hex=hex+"D";
if (z1==14) hex=hex+"E";
if (z1==15) hex=hex+"F";
if (z2<10) hex=hex+z2;
if (z2==10) hex=hex+"A";
if (z2==11) hex=hex+"B";
if (z2==12) hex=hex+"C";
if (z2==13) hex=hex+"D";
if (z2==14) hex=hex+"E";
if (z2==15) hex=hex+"F";
return hex;
}
function lichtan()
{
var r,g,b="00";
for (var zahl=0; zahl<256; zahl++)
{
r=farbzahl(zahl);
g=farbzahl(zahl);
window.document.bgColor="#"+r+g+b;
}
}
//-->
</script>
</head>
<body bgcolor="000000">
<h2> Die Sonne ist aufgegangen</h2>
<form>
<input type="button" name="an" value="LICHT AN" onclick="lichtan()">
<input type="button" name="aus" value="LICHT AUS" onclick="lichtaus()">
</form>
</body>
</html>