
function transfer(pause_time, transfer_location) {
  if (document.images)
    setTimeout('location.replace("'+transfer_location+'");',pause_time);
  else
    setTimeout('location.href = transfer_location;',pause_time);
}

// saved from: http://www.infohiway.com/javascript/titlepag.txt
// Cut-N-Paste JavaScript from ISN Toolbox
// Copyright 1996, Infohiway, Inc.  Restricted use is hereby
// granted (commercial and personal OK) so long as this code
// is not *directly* sold and the copyright notice is buried
// somewhere deep in your HTML document.  A link to our site
// http://www.infohiway.com is always appreciated of course,
// but is absolutely and positively not necessary.
