// *** gallery
function SlideShow(arg1,arg2){
	dat="&dir="+arg1+"&photo_no="+arg2+"&type=SlideShow";
	sendRequest(req_res, dat, 'post', 'gallery.php', true, true);
}

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function req_res(oj){
	var res = oj.responseText;
	document.getElementById("RIGHT_SIDE_IN_G").innerHTML=res;
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++

// *** BEST PHOTO
function best_photo(arg1,arg2){
	dat="&dir="+arg1+"&photo_no="+arg2+"&type=best_photo";
	sendRequest(best_photo_res, dat, 'post', 'gallery.php', true, true);
}

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function best_photo_res(oj){
	var res = oj.responseText;
	document.getElementById("best_photo").innerHTML=res;
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// ** BEST3
function disp_best3(arg1,arg2){
	dat="&item="+arg1;
	sendRequest(item_res, dat, 'post', 'best_'+arg1+'.php', true, true);
}
// ** SET ITEM
function disp_setitem(arg1,arg2){
	dat="&item="+arg1;
	sendRequest(item_res, dat, 'post', 'setitem_'+arg1+arg2+'.php', true, true);
}
// ** ALL ITEM
function disp_allitem(arg1,arg2){
	dat="&item="+arg1;
	sendRequest(item_res, dat, 'post', 'allitem_'+arg1+arg2+'.php', true, true);
}
// ** POST BOX
function disp_post_box(arg1,arg2){
	dat="&post="+arg1;
	sendRequest(item_res, dat, 'post', 'postcard_'+arg1+arg2+'.php', true, true);
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function item_res(oj){
	var res = oj.responseText;
	document.getElementById("item_area").innerHTML=res;
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++


function interior_img(arg1,arg2,arg3){
	var i = new Image();
	i.src=arg1+"_interior/"+arg2+".jpg";

	var w = i.width;
	var h = i.height;


if(arg3=="w"){

	img ="<div class='interior_main'>";
	img +="<div id='interior_img'><img src='"+arg1+"_interior/"+arg2+".jpg' alt='' border='0' /></div>";
	img +="<p>www.lifestudio.jp</p>";
	img +="</div>";

}else{

	img ="<div class='interior_main_l'>";
	img +="<table cellpadding='0' cellspacing='0' border='0'>";
	img +="<tr>";
	img +="<td><img src='"+arg1+"_interior/"+arg2+".jpg' alt='' border='0'></td>";
	img +="<td><p>www.lifestudio.jp</p></td>";
	img +="</tr>";
	img +="</table>";
	img +="</div>";

}





	document.getElementById("interior_main_box").innerHTML=img;
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++

