function openCart(i_locale,i_limit) { width = 500; height = 500; s_left = Math.round((screen.availWidth - width) / 2); s_top = Math.round((screen.availHeight - height) / 2); if (s_top < 0) s_top = 0; printwin = window.open("http://cms.schwarzpharma.com/bshop/cart.php?locale="+i_locale+"&limit="+i_limit,'cartwin','width='+width+',height='+height+',left='+s_left+',top='+s_top+',scrollbars=yes,toolbar=no,resizable=no'); printwin.focus(); } function addToCart(i_locale,i_bid,i_amount,i_limit) { width = 500; height = 500; s_left = Math.round((screen.availWidth - width) / 2); s_top = Math.round((screen.availHeight - height) / 2); if (s_top < 0) s_top = 0; printwin = window.open("http://cms.schwarzpharma.com/bshop/cart.php?action=add&bid="+i_bid+"&amount="+i_amount+"&locale="+i_locale+"&limit="+i_limit,'cartwin','width='+width+',height='+height+',left='+s_left+',top='+s_top+',scrollbars=yes,toolbar=no,resizable=no'); printwin.focus(); }