function koupit(id, count, flush) {
	if (count) count = count.value;
	if (!count) count = 1;
	if (!flush) flush = 0;
	getData(url + "inc/ajax/abasket.php?id=" + id + "&count=" + count + "&flush=" + flush + "&preurl=" + url, "basket");
	if (show_window_after_buy == 1 && flush != 1) alert(window_after_buy_text);
	var loc = document.location.href;
	if (loc.match("basket") != null) document.location.href = url + "?loc=basket";
}