

function setLinkToShop(lPageID){
	lProductID=document.frmLink.cboLinkToShop.options[document.frmLink.cboLinkToShop.selectedIndex].value;

	updateLink(lPageID,lProductID);
	
}

function updateLink(lPageID,lProductID){
	window.location.href='cms/Update_Link_To_Shop.asp?lPageID='+lPageID+'&lProductID='+lProductID;
}

function AddToBasket(){
	var lpQty=document.frmAdd.Quantity.value;
	//validates qty is valid and attributes selected (if any)
	if (isNaN(lpQty)){
		alert('Please enter a quantity between 1-9999');
	}else{
		if (parseInt(lpQty)<1||parseInt(lpQty)>9999){
			alert('Please enter a quantity between 1-9999');			
		}else{
			document.frmAdd.submit();
			
		}
	}
}
function AddTopUpToBasket(){
	var lpQty=document.frmAdd.Quantity.value;
	var zCardRef=String(''+document.frmAdd.cboAttributes1.value).replace(/ /gi,'');

	//validates qty is valid and attributes selected (if any)
	if (isNaN(lpQty)){
		alert('Please enter a valid Gift Card number and amount to Top-Up');
	}else{
		if (parseInt(lpQty)<1||parseInt(lpQty)>9999||zCardRef.length==0){
			alert('Please enter a valid Card No. and a Top-Up amount between 1-9999');			
		}else{
			if (confirm('£'+lpQty+' will be credited to Card No. '+zCardRef+' when you Check Out.\n\nIs this correct?')){
				document.frmAdd.cboAttributes1.value='Card No.: '+document.frmAdd.cboAttributes1.value;
				document.frmAdd.submit();
			}	
			
		}
	}	
}