function intOnly(i) {
	if(i.value.length>0) {
		i.value = i.value.replace(/[^\d]+/g, '');
	}
	if(i.value.length==0) 
	{
	i.value = 0;
	}
}

function intOnBlur(i){
if(i.value.length==0) 
	{
	i.value = 0;
	}
}

function addToBasket(productID)
	{
	eval("document.productItem"+productID+".action = \"basket.asp\";")
	eval("document.productItem"+productID+".submit();")
	}