function Add2Basket(productid, quantity, event3)
{
	if (typeof(productid) == "undefined") {
		productid = document.getElementById('license').value;
		quantity = 1;
		event3 = 'productpage';
	}

	if (typeof(quantity) == "undefined") {
		quantity = document.getElementById('qty'+productid).value;
	}
	
	// link='https://secure.shareit.com/shareit/cart.html?PRODUCT['+productid+']='+quantity+'&cartcoupon=1&DELIVERY['+productid+']=EML&languageid=1&backlink=http%3A%2F%2Fwww.winagents.com/en/shop/&cookies=1&currencies=all';

	link='/bitrix/redirect.php?event1=add_basket&event2='+productid+'&goto=https%3A//secure.shareit.com/shareit/cart.html%3FPRODUCT%5B'+productid+'%5D%3D'+quantity+'%26cartcoupon%3D1%26DELIVERY%5B'+productid+'%5D%3DEML%26languageid%3D2%26backlink%3Dhttp%253A%252F%252Fwww.winagents.com/de/shop/%26cookies%3D1%26currencies%3Dall%26HADDITIONAL1%5B'+productid+'%5D%3D%23EVENT_GID%23';

	if (typeof(event3) != "undefined") {
		link = link + '&event3='+event3;
	} else {
		link = link + '&event3=productpage';
	}


	window.location = link;

	return true;
}
