// JavaScript Document
function saveCookie(name,value)
{
	setCookie(value,180,name);
	
}
function setCookie(B,J,S)
{
	var A=new Date();
	var H=new Date(A.valueOf()+J*86400000);
	var D=(J)?"; expires="+H.toGMTString():"";
	
	document. cookie = S + "=" + escape(B) + ";"+D; 
	
}
function getCookie(sName)
{
// cookies are separated by semicolons
var aCookie = document. cookie .split("; ");
for (var i=0; i < aCookie.length; i++) 
{ // a name/value pair (a crumb) is separated by an equal sign 
	var aCrumb = aCookie[i].split("=");
	if (sName == aCrumb[0]) return unescape(aCrumb[1]); 
}
// a cookie with the requested name does not exist return null; } 

}

function DelCookie(sName) 
{ 
	sValue = '';
	document. cookie = sName + "=" + escape(sValue) + "; expires=Fri, 31 Dec 1999 23:59:59 GMT;"; 
}
 
