function setCookie(cValue)
{
	document.cookie=("allaboutfun="+cValue+"; path=/")
	alert("This item has been added to your wishlist.");
}
function getCookie()
{
	var cCookie=document.cookie
	var tempName="allaboutfun="
	if (cCookie.indexOf(tempName)==((-1)||(0)))
	{
		var valStart=tempName.length
	}
	else
	{
		var valStart=cCookie.indexOf(tempName)+tempName.length
	}
	if (cCookie.indexOf(";",tempName)==((-1)||(0)))
	{
		var valEnd=cCookie.length
	}
	else
	{
		var valEnd=cCookie.indexOf(";",tempName)
	}
	var cookieValue=document.cookie.substring(valStart,valEnd)
	return cookieValue
}
function unSetCookie(cName)
{
	document.cookie=(cName+"=''; expires=-1")
}