function foto(link,nazwa,wid,hei)
{
 window.open(link,nazwa,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+wid+',height='+hei+',left=10,top=10');
}


function ustawMini(foto_tn,foto,w,h,kolor)
{
    if (w==undefined) w = 800;
    if (h==undefined) h = 600;
    
    var mini     = document.getElementById('fotomini');
    var minilink = document.getElementById('fotominilink');
    document.produkt.kolor.value=kolor;
    
    mini.src=foto_tn;
    minilink.href="javascript:foto('"+foto+"','obrazek','"+w+"','"+h+"');";
    
    
} 

