function otworzOknoOld(id)
{
szerokosc = 640;
wysokosc = 580;
window.open('fakturaDruk.php?id='+id, 'nazwa2', 'menubar=yes, toolbar=no, location=no, scrollbars=yes, resizable=no, status=no, left=20, top=20, width='+szerokosc+', height='+wysokosc);
}
function otworzOkno(link)
{
szerokosc = 840;
wysokosc = 580; 
window.open(link, 'nazwa2', 'menubar=yes, toolbar=no, location=no, scrollbars=yes, resizable=no, status=no, left=20, top=20, width='+szerokosc+', height='+wysokosc);
}

function wyborPlatnosc(faktura_id){
    if(document.getElementById("faktura").checked) {
        location.href='?sec=user&co=proforma&faktura_id='+faktura_id+'&pokaz=ekran';
    }
    if(document.getElementById("przelewy24").checked) {
        document.getElementById("form24").submit();
    }
    
}
function fDruk(){
    var ifr=document.getElementById("finframe")
    var doc = ifr.contentWindow;
        
    doc.print()
}
function fSelect(id){
    for(i=1;i<=2;i++){
        var tr=document.getElementById('tr'+i);
        if(id==i) tr.className='trselected';
        else tr.className='';
    }


}
