|
This goes between the <HEAD></HEAD> tags
<script language="javascript">
function blinker()
{
var timer = 0;
for(i=0;i<3;i++)
{
timer +=200
setTimeout("document.bgColor='red';",timer);
timer +=200
setTimeout("document.bgColor='yellow';",timer);
}
}
</script>
Change the <BODY> tag to the following
<body onLoad="blinker()">
|