function saveDatamini()
{
	theName  = "textset";
	theDay   = 7;
	setDay = new Date();
	setDay.setTime(setDay.getTime()+(theDay*1000*60*60*24));
	expDay = setDay.toGMTString();
	document.cookie = theName + "="+escape(1)+";expires="+expDay+";path =/";
	location.reload();
}

function saveDatabig()
{
	theName  = "textset";
	theDay   = 7;
	setDay = new Date();
	setDay.setTime(setDay.getTime()+(theDay*1000*60*60*24));
	expDay = setDay.toGMTString();
	document.cookie = theName + "="+escape(3)+";expires="+expDay+";path =/";
	location.reload();
}

//クッキー削除
function delCook()
{
	theName  = "textset";
	theDay   = 7;
	setDay = new Date();
	setDay.setTime(setDay.getTime()+(theDay*1000*60*60*24));
	expDay = setDay.toGMTString();
	document.cookie = theName + "="+escape(0)+";expires="+expDay+";path =/";
	location.reload();
}