	/**
	 * add qty to cart by product_id and cart url
	 */
	function addToCartByProdIdAndUrl(productId,url)
    {
        var val;
        val = $('qty_' + productId).value;
        url = url + 'qty/' + val + '/';
        setLocation(url);
    }
