// JavaScript Document
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
var StayAlive = 30; 
// Number of seconds to keep window open
function KillMe() {
   setTimeout('self.close()', StayAlive * 1000); 
   }
// *** end of script ******
