function check() {
  $('#load-image').html('<img src="./images/load.gif" />');
  setTimeout('c1()', 2000);
}
function c1() {
  $('#check').html('<br />Checking the Solar System.....');
  setTimeout('c1b()', 2000);
}
function c1b() {
  $('#check').append(' Done.');
  setTimeout('c2()', 3000);
}
function c2() {
  $('#check').append('<br />Checking the size of the planet &#146;Earth&#146;.....');
  setTimeout('c2b()', 2000);
}
function c2b() {
  $('#check').append(' Done.');
  setTimeout('c3()', 3000);
}
function c3() {
  $('#check').append('<br />Checking earth&#146;s terrain.....');
  setTimeout('c3b()', 2000);
}
function c3b() {
  $('#check').append(' Done.');
  setTimeout('c4()', 3000);
}
function c4() {
  $('#check').append('<br />Checking earth&#146;s inhabitants.....');
  setTimeout('c4b()', 2000);
}
function c4b() {
  $('#check').append(' Done.');
  setTimeout('done()', 1000);
}
function done() {
  $('#check').append('<br /><br />Finished.');
  setTimeout('done2()', 1000);
}
function done2() {
  $('#load-image').html('<img src="./images/load2.gif" />');
  $('#check').append('<br /><br />Calculating results...');
  setTimeout('result()', 4000);
}
function result() {
  $('#main').load("./fin.htm");
}