// ウインドウオープン（マイショップ）
function window_open_myshop(){
	window.open( './zip_search.cgi', 'search_myshop', 'width=400, height=400, menubar=no, toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=no');
	document.mainform_myshop.target = "search_myshop";
	document.mainform_myshop.submit();
}

// 再検索処理（マイショップ）
function shop_reset(){
	document.cookie = "My_Shop=; expires=Fri, 31 Dec 1999 23:59:59 UTC; path=/;";
	document.cookie = "My_Tel=; expires=Fri, 31 Dec 1999 23:59:59 UTC; path=/;";
	document.location.reload();
}

//マイシカゴショップとは（マイショップ）
function wo_myshop(){
var s;
s = window.open("http://www.chicago-pizza.com/myshop.html","bank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,close=yes,width=340,height=240");
s.window.focus();
s.window.moveTo(100,100);
}

// ウインドウオープン（ウェブオーダー）
function window_open_order(){
	window.open( './zip_search_web_order.cgi', 'search_order', 'width=400, height=400, menubar=no, toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=no');
	document.mainform_order.target = "search_order";
	document.mainform_order.submit();
}