function AddToBasket(itemcode,description, price) {

	var itemDesc;
	var nextURL;


	//alert("HERE");		
	
	<!-- validate price  -->
	if (price < 1) {
		alert ("No price entered");
		return;
	}

	<!-- build description  -->
    itemDesc = description;

	<!-- Replace all spaces with a + -->
	itemDesc=itemDesc.replace(/ /g,"+");
	itemDesc=itemDesc.replace(/&/g,"and");
	
	<!-- Set return page -->
	nextURL=window.location.href;
			
	<!-- Add to and display basket -->
	window.location.href = "http://www.romancart.com/cart.asp?itemcode="+itemcode+"&itemname="+itemDesc+"&storeid=45430&quantity=1&price="+price+"&returnurl="+nextURL;
	
}	
function BundleAddToBasket(itemcode,description, price,extra) {

	var itemDesc;
	var nextURL;


	//alert("HERE");		
	
	<!-- validate price  -->
	if (price < 1) {
		alert ("No price entered");
		return;
	}

	<!-- build description  -->
    itemDesc = description;

	<!-- Replace all spaces with a + -->
	itemDesc=itemDesc.replace(/ /g,"+");
	itemDesc=itemDesc.replace(/&/g,"and");
	
	<!-- Set return page -->
	nextURL=window.location.href;
			
	<!-- Add to and display basket -->
	window.location.href = "http://www.romancart.com/cart.asp?itemcode="+itemcode+"&itemname="+itemDesc+"&storeid=45430&quantity=1&price="+price+"&returnurl="+nextURL+""+extra;
	
}	  


