// obrazek - galerie function openWindowImg(imgId,widthO,heightO){ iMyWidth = (window.screen.width/2) - (widthO/2); iMyHeight = (window.screen.height/2) - (heightO/2+60); if (iMyWidth>0 && iMyHeight>0){ // pokud je okno mensi nez rozliseni win = window.open('https://www.priemyselnydom.sk/showgaleryimg.php?imgId:'+imgId, '', 'scrollbars=yes, width='+widthO+', height='+heightO+', resizable=no,left='+iMyWidth+', top='+iMyHeight+', screenX='+iMyWidth+', screenY='+iMyHeight); }else{ widthA = screen.availWidth-50; heightA = screen.availHeight-50; win = window.open('https://www.priemyselnydom.sk/showgaleryimg.php?imgId:'+imgId, '', 'scrollbars=yes, width='+widthA+', height='+heightA+', resizable=no,left=20, top=20, screenX=20, screenY=20'); } win.focus(); } // Otevře zvětšený obrázek function openBigImg(imgId,widthO,heightO){ iMyWidth = (window.screen.width/2) - (widthO/2); iMyHeight = (window.screen.height/2) - (heightO/2+60); if (iMyWidth>0 && iMyHeight>0){ // pokud je okno mensi nez rozliseni win = window.open(imgId, '', 'scrollbars=auto, width='+widthO+', height='+heightO+', resizable=yes, statusbar=no, left='+iMyWidth+', top='+iMyHeight+', screenX='+iMyWidth+', screenY='+iMyHeight); }else{ widthA = screen.availWidth-50; heightA = screen.availHeight-50; win = window.open(imgId, '', 'scrollbars=auto, width='+widthA+', height='+heightA+', resizable=yes, statusbar=no, left=20, top=20, screenX=20, screenY=20'); } win.focus(); } // nápověda parametrů function openWindowHelp(help){ win = window.open('https://www.priemyselnydom.sk/showhelp.php?helpId:'+help, '', 'scrollbars=yes, width=300, height=200, resizable=yes,left=20, top=20, screenX=20, screenY=20'); win.focus(); } // tisk function openPrintWin(goodId){ win = window.open('https://www.priemyselnydom.sk/good.php?goodId:'+goodId+'|print:true', '', 'scrollbars=yes, width=500, height=600, resizable=yes,left=20, top=20, screenX=20, screenY=20'); win.focus(); } // poslani emailem function openMailWin(goodId){ win = window.open('https://www.priemyselnydom.sk/mailgood.php?goodId:'+goodId, '', 'scrollbars=yes, width=400, height=250, resizable=yes,left=20, top=20, screenX=20, screenY=20'); win.focus(); } /* // splatkova kalkulacka cetelem function openCalcWin(price){ win = window.open('https://www.priemyselnydom.sk/cetelemcalc.php?price='+price, '', 'scrollbars=yes, width=600, height=580, resizable=yes,left=20, top=20, screenX=20, screenY=20'); win.focus(); }*/