
function BigView(id, picn) {
	var data= "";
	var idname= "bigimg";                         // 拡大写真
	var idname2="tx-04";                          // 説明文
	var host= location.hostname;                  // host_name
	var urls= 'http://' + host + '/js/bigview_db.php?k=' + encodeURI(id) + '&p=' + encodeURI(picn);
//	alert(urls);
	var req= new XMLHttpRequest();
	req.open('POST', urls, false);                // 同期通信
	req.send(null);
	if(req.status == 200) {
//alert(req.responseText + "###");
		data= req.responseText;                   // JSコマンドのSAVE
		eval(data);                               // JSコマンドの実行
	}
	else
		alert("XMLHttpRequest??"+req.status);

//alert(img1 + "aaaaaa");
//alert(mesg1 + "aaaaaa");
//	if( img1 == "../files/npicg10/higashinihonbashiHrsenmen.jpg" )  alert(img1);
//alert(img1);

// 画像切替（id=bigimg）
	if( img1 != '' ) {
		document.getElementById(idname).src=    img1;
		document.getElementById(idname).width=  xsize;
		document.getElementById(idname).height= ysize;
	}

// コメント切替（id=bigmsg）
//	if( mesg1 != "" ) {
		document.getElementById(idname2).innerHTML= mesg1;
//	}
}

