function basket_add(){
	c = basket_add.arguments.length;
	windowHeight = 160;
	windowWidth = 430;
	windowLeft = (screen.width-windowWidth)/2;
	windowTop = (screen.height-windowHeight)/2;
	item_param_str = '';
	for (i = 0; i < c; i++){
		if (i != 0){
			item_param_str += '&'
		}
		item_param_str += 'item_id[]=' + basket_add.arguments[i];
        //alert("i="+i+" - "+basket_add.arguments[i]);
	}
	url = '/basket/add?' + item_param_str;
	basketWindow = window.open(url, "basketWindow", "height="+windowHeight+",width="+windowWidth+",top="+windowTop+",left="+windowLeft+",menubar=no,status=no,resizeable=no,toolbar=no,location=no");
	window.basketWindow.focus();
	return false;
}

function basket_add_2(item_id,set_id,season_id){
	windowHeight = 160;
	windowWidth = 430;
	windowLeft = (screen.width-windowWidth)/2;
	windowTop = (screen.height-windowHeight)/2;
	url = '/basket/add_2?item_id=' + item_id + '&set_id=' + set_id + '&season_id=' + season_id;
	basketWindow = window.open(url, "basketWindow", "height="+windowHeight+",width="+windowWidth+",top="+windowTop+",left="+windowLeft+",menubar=no,status=no,resizeable=no,toolbar=no,location=no");
	window.basketWindow.focus();
	return false;
}

function basket_change_item_color(item_id, pos){
	windowHeight = 160;
	windowWidth = 430;
	windowLeft = (screen.width-windowWidth)/2;
	windowTop = (screen.height-windowHeight)/2;
	item_param_str = '';
	url = '/basket/change_item_color?item_id=' + item_id + '&pos=' + pos;
	changeColorWindow = window.open(url, "changeColorWindow", "height="+windowHeight+",width="+windowWidth+",top="+windowTop+",left="+windowLeft+",menubar=no,status=no,resizeable=no,toolbar=no,location=no");
	window.changeColorWindow.focus();
	return false;
}

function discount_card_add(){
	windowHeight = 130;
	windowWidth = 430;
	windowLeft = (screen.width-windowWidth)/2;
	windowTop = (screen.height-windowHeight)/2;
	url = '/basket/discount_card';
	discountWindow = window.open(url, "basketWindow", "height="+windowHeight+",width="+windowWidth+",top="+windowTop+",left="+windowLeft+",menubar=no,status=no,resizeable=no,toolbar=no,location=no");
	window.discountWindow.focus();
	return false;
}

