/* 店舗写真の入れ替え tenpo.html */
function temp_view(strImg,strName) {
	document.getElementById('temp_view').innerHTML = "<img src=\"img/tenpo/"+strImg+"\"  alt=\""+strName+"\" border=\"0\">";
}

/* 商品写真の入れ替え item01 - 05.html */
function item_view(strImg,strName) {
	document.getElementById('item_view').innerHTML = "<img src=\"img/item/"+strImg+"\"  width=\"320\" height=\"240\" alt=\""+strName+"\" border=\"1\">";
}

/* クーポン画面表示 index.html */
function openWindowMenu_ticket(){
	var SW;
	SW= window.open ("","WinMenu_ticket",
	"toolbar=no,location=no,directorise=no,status=no,menubar=yes,scrollbars=no,width=360,height=480");
	SW.focus();
}

/* メニュー画面表示 tenpo.html*/
function openWindowMenu_menu(){
	var SW;
	SW= window.open ("","WinMenu_menu",
	"toolbar=no,location=no,directorise=no,status=no,menubar=no,scrollbars=yes,width=884,height=500");
	SW.focus();
}

