<!--// pause_time determines the length of pause after the page
// is loaded until it transfers
//     0 =  0 seconds
//  5000 =  5 seconds
// 10000 = 10 seconds
pause_time = 8000;

// transfer_location is either the relative or full URL
// of the page to which you want it to transfer you
transfer_location = "main.htm";

function transfer() {
 if (document.images)
  setTimeout('location.replace("'+transfer_location+'");',pause_time);
 else
  setTimeout('location.href = transfer_location;',pause_time);
}
// -->