// (C) 2001 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

// set the page to go to...
url = "02.html";

// set how fast to expand horizontally
// lower is slower
var speedX = 5;

// set how fast to expand vertically
// lower is slower
var speedY = 2;

// set background color of "Loading..." screen
var bgColor = "#ffffff";

// set text color of "Loading..." screen
var txtColor = "#FF80000";


// do not edit below this line
// ---------------------------

if (document.all){
var wide = window.screen.availWidth;
var high = window.screen.availHeight;
}

function andBoom(){
  if (document.all){
    var Boomer = window.open("","BoomWindow","fullscreen");
    Boomer.document.write('<HTML><BODY BGCOLOR='+bgColor+' SCROLL=NO><FONT FACE=Verdana COLOR='+txtColor+'>ConfettiS.org...</FONT></BODY></HTML>');
    Boomer.focus();
    for (H=1; H<high; H+= speedY){
         Boomer.resizeTo(1,H);
    }
    for (W=1; W<wide; W+= speedX){
         Boomer.resizeTo(W,H);
    }
    Boomer.location = url;
  }
  else {
    window.open(url,"BoomWindow","");
  }
}
