//// スタートページに設定 //////////////////////////////

function setCookieStartPage(s){
	var cName = "HimejiTopSet=";
	exp = new Date();
	exp.setTime(exp.getTime() + 31536000000);
	document.cookie = cName + s + "; path=/" + "; expires=" + exp.toGMTString();
	//
	if(s==1) {
		alert("「ホーム」をトップページに設定しました。");
	} else if(s==2) {
		alert("「訪問者向けホーム」をトップページに設定しました。");
	} else if(s==3) {
		alert("「事業者向けホーム」をトップページに設定しました。");
	}
}

//
function getCookieStartPage(){
	var tmpCookie = document.cookie + ";";
	if(tmpCookie.indexOf("sph=1")==-1){
		//
		var p = "";
		var cName = "HimejiTopSet=";
		var tmpCookie = document.cookie + ";";
		var s = tmpCookie.indexOf(cName);
		if (s != -1) {
			var e = tmpCookie.indexOf(";", s);
			p = tmpCookie.substring(s + cName.length, e);
			if(p==1) {
				document.location.replace("/");
			} else if(p==2) {
				document.location.replace("/index2.html");
			} else if(p==3) {
				document.location.replace("/index3.html");
			}
		}
		var d = "sph=1;";
		document.cookie = d;
	}
}
//
getCookieStartPage();




//
