   <!--
var star      = "images/star1.gif";

var ns4up = (document.layers) ? 1 : 0;  // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var star_x,star_y,i;   // coordinate and position variables

if (ie4up) 
{

  star_width = document.body.clientWidth;
  star_height = document.body.clientHeight;
  star_x = new Array();
  star_y = new Array();
  for(i=0; i< 5;++i)
  {
     star_x[i] = Math.random()*star_width-70;  // set position variables
     star_y[i] = Math.random()*star_height-70;
     document.write("<div id=\"star"+i+"\" style=\"POSITION: ");
     document.write("absolute; Z-INDEX: "+"; VISIBILITY: ");
     document.write("visible; TOP: 13px; LEFT: 13px;\"><img src=\"");
     document.write(star + "\" border=\"0\" heigth=\"15\" width=\"15\"></div>");
  }
}


function show_star() 
{
    star_width = document.body.clientWidth;
    star_height = document.body.clientHeight;
    for(i=0; i< 5;++i)
    {
      star_x[i] = Math.random()*star_width-70;  // set position variables
      star_y[i] = Math.random()*star_height-70;  
    
      document.all["star"+i].style.pixelTop  = star_y[i];
      document.all["star"+i].style.pixelLeft = star_x[i];
    }      
    setTimeout("show_star()", 350);
}

show_star();
