function show_photo(path,desc){
	document.body.style.overflow='hidden';
	div_f=document.getElementById('dvgal');
	div_c=document.getElementById('dvphoto');
	div_l=document.getElementById('dvlist');
	div_f.className='dvg-on';
	div_c.className='dvp-on';
	div_l.className='dvl-on';
	div_c.innerHTML="[ X ] <a href='javascript:void();' onclick='close_view();'>Cerrar Vista</a><br><br><h2>"+desc+"</h2><br><img src='"+path+"'>";
}
function close_view(){
	document.body.style.overflow='auto';
	div_f=document.getElementById('dvgal');
	div_f.className='dvg-off';
	div_c=document.getElementById('dvphoto');
	div_l=document.getElementById('dvlist');
	div_c.innerHTML="";
	div_c.className='dvp-off';
	div_l.className='dvg-off';
}