function PrintedProductsAddToBasket(productid) {
	var theform = document.frm;
	theform['productid'].value  = productid;
	theform['quantity'].value = theform['quantity'+productid].value;
	theform.submit();
}
