<html>
<head>
<title>Untitled</title>
</head>
<body>
<script language="JavaScript">
<!-- --
function setbackground()
{
window.setTimeout( "setbackground()", 5000);
var index = Math.round(Math.random() * 9);
var ColorValue = "000000"; // default color - white (index = 0)
if(index == 1)
ColorValue = "000000";
if(index == 2)
ColorValue = "CCAFFF";
if(index == 3)
ColorValue = "A6BEFF";
if(index == 4)
ColorValue = "99FFFF";
if(index == 5)
ColorValue = "D5CCBB";
if(index == 6)
ColorValue = "99FF99";
if(index == 7)
ColorValue = "FFFF99";
if(index == 8)
ColorValue = "FFCC99";
if(index == 9)
ColorValue = "CCCCCC";
document.bgColor=ColorValue;
}
// -- -->
</script>
<body onLoad="setbackground();">
</body>
</html>