<!--

	
var hallurl = new Array();
var hallname = new Array();
var defurl = "http://www.pzone.jp/";
//var defurl = "http://paradice.kameyama-grp.co.jp/";

hallurl["01-01"] = defurl + "venus/indexpc.html";
hallurl["01-02"] = defurl + "oono/indexpc.html";
hallurl["01-03"] = defurl + "powers/indexpc.html";
hallurl["01-04"] = defurl + "ssl/indexpc.html";
hallurl["01-05"] = defurl + "next/indexpc.html";
hallurl["01-06"] = defurl + "haiki/indexpc.html";
hallurl["02-01"] = defurl + "ny/indexpc.html";
hallurl["03-01"] = defurl + "chikushino/indexpc.html";
hallurl["04-01"] = defurl + "rouge/indexpc.html";
hallurl["05-01"] = defurl + "arita/indexpc.html";
hallurl["06-01"] = defurl + "saikai/indexpc.html";
hallurl["07-01"] = defurl + "oomura/indexpc.html";

hallname["01-01"] = "ヴィーナス";
hallname["01-02"] = "大野店";
hallname["01-03"] = "パワーズ";
hallname["01-04"] = "Super Slot";
hallname["01-05"] = "ネクスト";
hallname["01-06"] = "早岐店";
hallname["02-01"] = "Ｎ.Ｙ.";
hallname["03-01"] = "筑紫野店";
hallname["04-01"] = "ルージュ";
hallname["05-01"] = "有田店";
hallname["06-01"] = "スーパースロット西海店";	
hallname["07-01"] = "大村店";	

function DispHallData()
{
	rhall = getCookie("HData");
//	document.write(rhall);
	if ( rhall != "" ) {
		var rsphall = rhall.split(",");
		for ( var i=0 ; i < rsphall.length ; i++ ) {
			document.write( "<img src='../image/jmp.gif'><a href='" + hallurl[rsphall[i]] + "'>" + hallname[rsphall[i]] + "</a><br>" );
		}
	}
}


function resetSel(formName,selName,val){
	var oj = 'document.'+formName+'.'+selName;
	with(eval(oj)){
		if(val == 1){
			length = 6;
			options[0].value = "01-01"; options[0].text = "ヴィーナス　　　　　　　";
			options[1].value = "01-02"; options[1].text = "大野店";
			options[2].value = "01-03"; options[2].text = "パワーズ";
			options[3].value = "01-05"; options[3].text = "ネクスト";
			options[4].value = "01-04"; options[4].text = "Super Slot";
			options[5].value = "01-06"; options[5].text = "早岐店";
			options[0].selected = true;
		}
		if(val == 2){
			length = 1;
			options[0].value = "02-01"; options[0].text = "Ｎ.Ｙ.　　　　　　　　　";
			options[0].selected = true;
		}
		if(val == 3){
			length = 1;
			options[0].value = "03-01"; options[0].text = "筑紫野店　　　　　　　　";
			options[0].selected = true;
		}
		if(val == 4){
			length = 1;
			options[0].value = "04-01"; options[0].text = "ルージュ　　　　　　　　";
			options[0].selected = true;
		}
		if(val == 5){
			length = 1;
			options[0].value = "05-01"; options[0].text = "有田店　　　　　　　　　";
			options[0].selected = true;
		}
		if(val == 6){
			length = 1;
			options[0].value = "06-01"; options[0].text = "スーパースロット西海店　";
			options[0].selected = true;
		}
		if(val == 7){
			length = 1;
			options[0].value = "07-01"; options[0].text = "大村店　　　　　　　　　";
			options[0].selected = true;
		}	}
}
function getCookie(key,  tmp1, tmp2, xx1, xx2, xx3) {
    tmp1 = " " + document.cookie + ";";
    xx1 = xx2 = 0;
    len = tmp1.length;
    while (xx1 < len) {
        xx2 = tmp1.indexOf(";", xx1);
        tmp2 = tmp1.substring(xx1 + 1, xx2);
        xx3 = tmp2.indexOf("=");
        if (tmp2.substring(0, xx3) == key) {
            return(unescape(tmp2.substring(xx3 + 1, xx2 - xx1 - 1)));
        }
        xx1 = xx2 + 1;
    }
    return("");
}
function setCookie(key, val, tmp) {
    tmp = key + "=" + escape(val) + "; ";
    tmp += "expires=Fri, 31-Dec-2030 23:59:59; ";
    document.cookie = tmp;
}

function SetCK(f) {
	var hall = getCookie("HData");
	var out = f.hall.value;
	if ( hall != "" ) {
		var sphall = hall.split(",");
		for ( var i=0 ; i < sphall.length ; i++ ) {
			if (sphall[i] == out) {
				sphall[i] = "";
			}
		}
		for ( i=0 ; i < sphall.length ; i++ ) {
			if ( sphall[i]!="" ) {
				out += "," + sphall[i];
				var chk = out.split(",");
				if ( chk.length == 3 ) break;
			}
		}
	}
	if ( f.hall.value!=0 ) setCookie("HData", out);
}
-->