// This file, and references to these functions, are to be removed
// It simulates how the email box will be hidden once a user subscribes
// This functionality should be implemented server-side

function checkEmailCookie() {
	n = readCookie('email');
	if ( n == 'yes' ) {
		var n = document.getElementById('siteUpdateBox');
		n.style.display = "none";
	}
}

function writeEmailCookie() {
	createCookie('email', 'yes');

}
