function confirmSubmit()
{
    var agree = confirm("Biztosan töröljem???");
    
    if(agree)
     return true;
    else
     return false;
}

function winOpen(url,n,w,h)
{
    var newAblak = null;
    var sw = screen.width;
    var sh = screen.height;

    var left = sw ? (sw-w)/2 : 0;
    var top = sh ? (sh-h)/2 : 0;
    
    newAblak = window.open(url,n,"width=" + w + ",height=" + h + ",top=" + top + ",left=" + left + ",status=0,toolbar=0,resizable=0,scrollbars=yes");
}
