function SetCookieEZ (name,value){
	document.cookie = name + "=" + escape(value);
	}

function DelCookieEZ () {
	var ThreeDays = 3*24*60*60*1000;
	var expDate = new Date();
	expDate.setTime (expDate.getTime() - ThreeDays);
	document.cookie= "expires=" + expDate.toGMTString();
	}
	
function ExpireCookieEZ () {
	var TimeExp = 1*60*60*1000;
	var expDate = new Date();
	expDate.setTime (expDate.getTime() + TimeExp);
	document.cookie= "expires=" + expDate.toGMTString();
	}