
function showmore(id){
 var lnk = document.getElementById('link'+id);
 var cont = document.getElementById('cont'+id);
 var cont2 = document.getElementById('cont2'+id);
 cont2.style.display = "block";
 lnk.style.display = "none";
 cont.style.display = "none";
 }

function showPhoto(el) {
    var id = el.getAttribute('photo_id');
    var w = el.getAttribute('width')*1+20;
    var h = el.getAttribute('height')*1+20;
    var x = Math.floor((screen.width - w - 10)/2);
    var y = Math.floor((screen.height - h - 60)/2);
    var win = window.open('/picture/?id='+id, 'IMAGE_WINDOW', 'dependent=yes, disrectories=no, width='+w+', height='+h+', innerWidth='+w+', innerHeight='+h+', location=no, menubar=no, resizable=no, screenX='+x+', screenY='+y+', scrollbars=no, titlebar=no, toolbar=no');
    win.focus();
}
