function showimg(url)
{
document.getElementById('showfoto').style.display='block';
document.getElementById('showfoto').innerHTML = '<a href="javascript: hideimg();"><img src="/'+url+'" alt=""></a><div style="z-index: 100; position: absolute; right: 0px; top: 0px;"><a href="javascript: hideimg();"><img src="/admin/image/tree/close_window.jpg" title="Закрыть изображение" align="right"></a></div>';
}
function hideimg()
{
document.getElementById('showfoto').style.display='none';
}