<!--

function saveIt(name) {
	var x = document.forms['bu'].bidamount.value;
	if (!x)
		
	else {
		Cookies.create(name,x,7);
		alert('Cookie created');
	}
}

function readIt(name) {
	alert('The value of the cookie is ' + Cookies[name]);
}

function eraseIt(name) {
	Cookies.erase(name);
	alert('Cookie erased');
}

function init() {
	for (var i=1;i<3;i++) {
		var x = Cookies['ppkcookie' + i];
		if (x) alert('Cookie ppkcookie' + i + '\nthat you set on a previous visit, is still active.\nIts value is ' + x);
	}
}
// -->


