
/* font-select */
/* ------------------------------------------------------------------------------- */
function setCookie(theName,theValue) {	
	if((theName != null) && (theValue != null)) 	{
		document.cookie = theName + "=" + escape(theValue) + "; path=/";
		return true;
	}
	return false;
}

function getCookie(theName) {	
	theName += "=";
	theCookie = document.cookie + ";";
	start = theCookie.indexOf(theName);
	if(start != -1) {
		end = theCookie.indexOf(";",start);
		return unescape(theCookie.substring(start + theName.length, end));
	}
	return false;
}

function cssnormal() {	
	document.getElementById("big").disabled = true;
}
function cssbig() {
	document.getElementById("big").disabled = false;
}


function normalset() {
	cssnormal();
	setCookie("csssetting","default");
}
function bigset() {
	cssbig();
	setCookie("csssetting","big");
}


CookieCss = getCookie("csssetting");
if(CookieCss) {
	CssSetData = CookieCss;
} else {
	CssSetData = "default";
}

if(CssSetData == "big") {
	cssbig();
}else {
	cssnormal();
}


