
function photoShow(imgUrl,imgDesc){
	document.getElementById('photo_show_layer').style.display='block';
	document.getElementById('photo_show_img').src=imgUrl;
	document.getElementById('photo_desc').innerHTML=imgDesc;
}


