OK, I've found out how to define a path and domain. My cookies now don't have www in the server column, and I'm setting them using this code....
SCRIPT LANGUAGE=JAVASCRIPT>
function setCookie(){
var Team = "Saints";
var the_name = Team;
var the_cookie = "myTeam=" + escape(the_name) + ";" ;
var the_cookie = the_cookie + "path=/;";
var the_cookie = the_cookie + "domain=aussierulesok.com;";
document.cookie = the_cookie;
}
setCookie();
</SCRIPT>
I'm now fumbling around trying to delete them. I should be able to work it out but don't hesitate to drop me a safety line.
Cheers, AOK