//////////////////////////////////////////////////////////////////
//
//================================================================
// KOKUYO --- JavaScript
//            Copyright 2005 CATWALK,Inc. All rights reserved.
//            http://www.web-kyoto.com
//================================================================
//
// Eco UD CSSファイル設定用JS
// Created by CATWALK（三原比呂美）
// 2005年05月24日
// このスクリプトに対するお問い合わせは
// 三原　比呂美：hiromi@web-kyoto.com
// 宛に願います。
//
//////////////////////////////////////////////////////////////////

// Cookieの読み込み
var cookie = new Cookie("KOKUYOecoud",1);
var cssfile = cookie.get("KOKUYOecoud");

// CSSファイルが設定されている場合
if(cssfile) {
	// 設定ファイル
	if(cssfile == "large") {
		document.write('<link href="/common/css/udl_utf.css" rel="stylesheet" type="text/css">');
	} else if(cssfile == "middle") {
		document.write('<link href="/common/css/udm_utf.css" rel="stylesheet" type="text/css">');
	} else if(cssfile == "small") {
		document.write('<link href="/common/css/uds_utf.css" rel="stylesheet" type="text/css">');
	}
} else {
	// 共通設定
	document.write('<link href="/common/css/udm_utf.css" rel="stylesheet" type="text/css">');
}

// リロード関数
function reloadPage(value) {
	cookie.set("KOKUYOecoud", value);
	location.reload();
}

