<!-- Begin
if (prevDate==-1) {
	function writeHowTo(howToText) {
		newEl1 = document.createElement("P");
		newTxt = document.createTextNode(howToText);
		newEl2 = document.createElement("BR");
		newEl1.appendChild(newTxt);
		newEl1.appendChild(newEl2);
		cNode.appendChild(newEl1);
	}

	pNode = document.getElementById("pgID");
	cNode = document.getElementById("headsID");
	pNode.removeChild(cNode);
	cNode = document.getElementById("txtID");
	cNode.firstChild.firstChild.nodeValue = "Apparently your browser does not accept cookies";
	scndTxt = cNode.firstChild.nextSibling.firstChild;
	scndTxt.nodeValue="You cannot change any settings unless your browser accepts cookies. Below you will find instructions on how to enable cookies in the most common browsers.";

	cl = cNode.childNodes.length;
	for (var i = 2; i < cl; i++) {cNode.removeChild(cNode.firstChild.nextSibling.nextSibling);}

	writeHowTo("INTERNET EXPLORER 6.0: From the browser menu choose Tools | Internet Options | Privacy. Select Medium to allow cookies. If your current setting is Custom, click the Advanced button and choose Accept Cookies.");
	writeHowTo("INTERNET EXPLORER 5.0: From the browser menu choose Tools | Internet Options | Security | Internet | Custom Level. Scroll down to Cookies and choose Enable.");
	writeHowTo("NETSCAPE 7.1: From the browser menu choose Edit | Preferences | Privacy & Security. Suggested setting: 'Enable cookies based on privacy settings'.");
	writeHowTo("NETSCAPE COMMUNICATOR 6.0: From the browser menu choose Edit | Preferences | Privacy & Security | Enable.");
	writeHowTo("MOZILLA: From the browser menu choose Edit | Preferences | Privacy and Security | Cookies. Suggested setting: 'Enable cookies based on privacy settings'.");
	writeHowTo("MOZILLA FIREBIRD: From the browser menu choose Tools | Options | Privacy | Cookies. Suggested setting: 'Enable cookies'.");
	writeHowTo("MOZILLA FIREFOX: From the browser menu choose Tools | Options | Privacy. Suggested setting: 'Enable cookies'.");
	writeHowTo("OPERA 7: From the browser menu choose File | Quick preferences | Enable cookies.");
}
// End --

