﻿
function disptip()
{
	var name="";

	if(window.document.form1.d_shop.selectedIndex>0){
		var id=sprintf("%04d",window.document.form1.d_shop.value);
		var id1=sprintf("%03d",window.document.form1.d_shop.value);
		
		var name='/php/data/'+id+'.html';
		var ajax = new Ajax.Request(name, {
		method: 'get', 
		onComplete: function(httpObj) {
			$body = "<table border=0 width=80% >\n";
			$body = $body + "<tr bgcolor=\"#cccccc\">\n";
			$body = $body + "<td>\n";
			$body = $body + httpObj.responseText;
			$body = $body + "</td>\n";
			$body = $body + "</tr>\n";
			$body = $body + "</table>\n";

			$("shopinfo").innerHTML = $body;
		}
		});	
		
		var url = "/php/cart/dispreceipt.php?shopid="+id1;
		var ajax = new Ajax.Request(url, {
			method: 'get', 
			onComplete: function(httpObj) {
				$("deliver_time_list").innerHTML = httpObj.responseText;
			}
		});	
	}

	return false;

}
