
document.cookie = "cookies=true";

// prevent the running of the site in someone's frame set
// the following works as long as the frame has been given a name
if (parent.location != self.location) {
	parent.location = self.location;
} else {
	// the following is better but it errors out in NN6
	if (parent.frames[0]) {
		parent.location = self.location;
	}
}

