function show_photo(photo_file,photo_name,photo_exp,td_id){

	document.getElementById("thumbnail1").style.borderStyle="solid";
	document.getElementById("thumbnail1").style.borderWidth=1;
    document.getElementById("thumbnail1").style.borderColor="#CCCCCC";
	document.getElementById("thumbnail1").style.backgroundColor ="#F4F4F4";

	document.getElementById("thumbnail2").style.borderStyle="solid";
	document.getElementById("thumbnail2").style.borderWidth=1;
    document.getElementById("thumbnail2").style.borderColor="#CCCCCC";
	document.getElementById("thumbnail2").style.backgroundColor ="#F4F4F4";
	
	document.getElementById("thumbnail3").style.borderStyle="solid";
	document.getElementById("thumbnail3").style.borderWidth=1;
    document.getElementById("thumbnail3").style.borderColor="#CCCCCC";
	document.getElementById("thumbnail3").style.backgroundColor ="#F4F4F4";	
	
	document.getElementById("thumbnail4").style.borderStyle="solid";
	document.getElementById("thumbnail4").style.borderWidth=1;
    document.getElementById("thumbnail4").style.borderColor="#CCCCCC";
	document.getElementById("thumbnail4").style.backgroundColor ="#F4F4F4";
	
	document.getElementById("thumbnail5").style.borderStyle="solid";
	document.getElementById("thumbnail5").style.borderWidth=1;
    document.getElementById("thumbnail5").style.borderColor="#CCCCCC";
	document.getElementById("thumbnail5").style.backgroundColor ="#F4F4F4";
	
	document.getElementById("thumbnail6").style.borderStyle="solid";
	document.getElementById("thumbnail6").style.borderWidth=1;
    document.getElementById("thumbnail6").style.borderColor="#CCCCCC";
	document.getElementById("thumbnail6").style.backgroundColor ="#F4F4F4";
	
	document.getElementById("photo_area").innerHTML = '<img src="http://www.s-est.co.jp/upimg/'+photo_file+'">';
	document.getElementById("name_area").innerHTML = photo_name;
	document.getElementById("exp_area").innerHTML = photo_exp;
	document.getElementById(td_id).style.borderStyle="solid";
	document.getElementById(td_id).style.borderWidth=1;
    document.getElementById(td_id).style.borderColor="#75B8C5";
	document.getElementById(td_id).style.backgroundColor ="#FFFFFF";
	
	
}