// -->function read_cookie(name) { var allcookies = document.cookie; var start = allcookies.indexOf(name+"="); 
// -->if (start == -1) return ""; start += name.length + 1; var end = allcookies.indexOf(';', 
// -->start); if (end == -1) end = allcookies.length; var value = allcookies.substring(start, 
// -->end); return value; } function handle_close() { var d = new Date(); document.cookie = "todayeric=yes; path=/"; return true; } var todayeric = read_cookie("todayeric"); 
// -->var ericintro = read_cookie("ericintro"); if (todayeric == "" && ericintro !="refused") 
// -->{ window.name="root"; var child = open("welcome.htm","popup","width=600,height=550,location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status=no"); 
// -->child.onUnload = self.handle_close(); } 

