﻿    var newwindow;
    function popdetails(url) {
        newwindow=window.open(url,'popdetails','resizable=yes,scrollbars=yes,status=yes,');
        if (window.focus) newwindow.focus();
    }

    function poppeer(url) {
        newwindow=window.open(url,'poppeers','resizable=yes,scrollbars=yes');
        if (window.focus) newwindow.focus();
    }

    function resize(img) {
        if (img.width>180) {
            img.height=parseInt(img.height*180/img.width);
            img.width=180;
            img.title='Klikk a képre a teljes mérethez';
            var foo=document.getElementById(img.name);
            foo.innerHTML='<a href="'+img.src+'" target="_blank">'+foo.innerHTML+'</a>';
        }
    }

    function resize_avatar(img) {
        if(img.width>80) {
            img.height=parseInt(img.height*80/img.width);
            img.width=80;
        }
    }