All that we store in the cookie is a uniqid number generated for tracking purposes. The entire call to the cookie is:
<?php
//set cookie ID for the first time
$token=md5(uniqid(rand()));
setcookie("id",$token,time()+86400,"/wedlinks/",".webhostingservers.net",1);
?>
.webhostingservers.net is the name of our secure server. The appended "1" in the setcookie call is to ensure it is only transmitted over a secure server.
I have used medium-high privacy setting in IE 6 and all the pages have still displayed correctly on my computer. And it looks like the default for IE 6 is medium. Any other ideas?