function shop_add_to_basket (shopid) { if (controlAttribs(shopid)) { showFloatBasketAtMouse(); return true; } else { return false; } } function controlAttribs (shopid, tit) { var e = document.getElementById('attrib_'+shopid+'_zbozi_1'); if (e && e.nodeName == 'SELECT') { if (e.options[0].value == '') { if (e.selectedIndex == 0) { if (confirm('Nevybrali jste: '+e.title+'\nBude vybráno: '+e.options[1].value)) { e.selectedIndex = 1; // a vratime true - nechame na konec kdyby byla dalsi podminka } else { return false; } } } } // expedice - vyprodano - confirm var e = document.getElementById('p_expedice_text_'+shopid); if (e && e.value.toUpperCase() == 'VYPRODÁNO') { if (confirm('Upozornění! Dodací lhůta u tohoto výrobku je delší než 5 dní.')) { // a vratime true - nechame na konec kdyby byla dalsi podminka } else { return false; } } return true; } function kategorie_check_text(checkbox_id) { var elems = document.getElementById('param_search').getElementsByTagName('input'); for(i=0;i