function WinOpen1(){
WinWidth = 440;
WinHeight= 480;

win0 = 'toolbar=no,location=no,directryes=no,status=no,';
win1 = 'menubar=no,scrollbars=no,resizable=no,';
win2 = 'width='+WinWidth+',height='+WinHeight;
win = win0+win1+win2+'left=50,top=50';

window.open("map.html","WO1",win);
}

function Ticket(loc) {
var wnd="Ticket";
var myWindow = window.open(loc,wnd,"scrollbars=yes,location=no,menubar=no,width=560,height=600");
if (myWindow.focus!=null) {
myWindow.focus();
}
}

function clickchange(imagenum)
{
    if (document.images) document.myImage.src = imagenum;
}

function sdAjaxLoadData(shop_code){
	
	var param = "shop_code="+shop_code;
	
	var a = new Ajax.Request(
		"/sd_system/fudol/shop_list.php",
		{
			method: "get",
			parameters: param,
			onComplete: sdOnComplete
		}
	);
}

function sdOnComplete(request){
	$("shop_futube_list").innerHTML = request.responseText; 
}

function sdGetShopCode(){
	var path = window.location.pathname;
	var reg = new RegExp("/mise/([^/]+)/");
	var result = reg.exec(path);
	
	
	return result[1];
}

function sdOnLoadFunc(){
	
	var shop_code = sdGetShopCode();
	
	sdAjaxLoadData(shop_code);
}

Event.observe(window, 'load',sdOnLoadFunc);