function loadStyle(){
	//リンク及び画像パスの設定。トップページのみ変更
	IL_path();
	
	UDData   = "";
	UDName   = "vpfs=";
	theCookie = document.cookie+";";
	start = theCookie.indexOf(UDName);
	if (start != -1)
	{
	end = theCookie.indexOf(";",start);
	UDData = unescape(theCookie.substring(start+UDName.length,end));
	document.write("<link rel='stylesheet' href='" + Lpath + "common/css/"+UDData+".css' type='text/css'>");
	}else{
	document.write("<link rel='stylesheet' href='" + Lpath + "common/css/small.css' type='text/css'>");	}

}

function saveData(val, tmp)
{

	theName  = "vpfs";
	tmp = theName + "=" + escape(val) + "; ";
    tmp += "path=/; ";

	theDay   = 7;
	setDay = new Date();
	setDay.setTime(setDay.getTime()+(theDay*1000*60*60*24));
	expDay = setDay.toGMTString();
	document.cookie = tmp + "expires=" + expDay;

    window.location.reload();
}

