in reply to Removing cookies

If you know the names of the cookies, you can set the expire time to a negative value. I am not familiar with deleting cookies by domain name though.
$cookie = $co->cookie ( -name=>'sessID', -value=>\%v, -expires=>'-1h', ); print $co->header(-cookie->$cookie);

HTH,
Chris