// Cookie Functions
// save/read/delete cookie functions for storing small chunks of data in the browser
// 19990326

// Copyright (C) 1999 Dan Steinman
// Distributed under the terms of the GNU Library General Public License
// Available at http://www.dansteinman.com/dynapi/

// thanks to: Jesee Chisholm <JCHISHOLM@SENSORMATIC-VPD.com>

function saveCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000))
		var expires = "; expires="+date.toGMTString()
	}
	else expires = ""
	document.cookie = name+"="+value+expires+"; path=/"
}
function readCookie(name) {
	var nameEQ = name + "="
	var ca = document.cookie.split(';')
	for(var i=0;i<ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length)
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length)
	}
	return null
}
function deleteCookie(name) {
	saveCookie(name,"",-1)
}

function removeSelected() {
	currcookie = readCookie('BonjourSelectionCookie');
	houses_left = new Array();
	if (currcookie) {
		house_arr = currcookie.split('|');
		for (i=0;i<document.selectform.selectcheck.length;i++) {
			if (! document.selectform.selectcheck[i].checked) {
				houses_left.push(document.selectform.selectcheck[i].value)
			}
		}
		if (houses_left.length > 0) {
			cookieval = houses_left.join('|');
			saveCookie('BonjourSelectionCookie', cookieval, 14);
			location = window.location;
		} else {
			location=deleteSelectCookie();
		}
	}
}
function deleteSelectCookie() {
	deleteCookie('BonjourSelectionCookie');
	return location = window.location;
}
