UPDATE ON THE PROBLEM:
Yeah, you need to set the cookie time to a negative value so the browser can delete it, in adition we set the stored value to empty string which also helps to delete the same cookie...
This (a the top of your page) would do, just be sure to session_start() first:
setcookie('PHPSESSID', '', -3600, '/cv');
This works flawlessly on all my domains, I had this problem once.