function SymError(){  return true;}window.onerror = SymError;var SymRealWinOpen = window.open;function SymWinOpen(url, name, attributes){  return (new Object());}window.open = SymWinOpen;/*add to basket*/	function AddToBasket(description, cost, qty) {		var price;		var itemDesc;		var nextURL;				<!-- validate qty  -->		if (qty < 1) {			alert ("No quantity entered");			return;		}				if (cost <= 0) {			alert ("Please enter an amount");			return;		}			itemDesc = description;		/* Replace all spaces with a*/		itemDesc=itemDesc.replace(/ /g,"+");				price=cost;						/*Add to and display basket*/		window.location.href = "http://www.romancart.com/cart.asp?itemname="+itemDesc+"&storeid=16413&quantity="+qty+"&price="+price;			}