function buyItem(newRef, newPrice, newTaxable, newProduct, newOption, newWeight, newQuantity) {
               if(newQuantity>=1 && newQuantity<=23){
				newDis = newPrice*0/100; newPrice = newPrice-newDis;
		} else if(newQuantity>=24 && newQuantity<=35){
				newDis = newPrice*5/100; newPrice = newPrice-newDis;
		} else if(newQuantity>=36 && newQuantity<=71){
				newDis = newPrice*7/100; newPrice = newPrice-newDis;
		} else if(newQuantity>=72 && newQuantity<=143){
				newDis = newPrice*10/100; newPrice = newPrice-newDis;
		} else if(newQuantity>=144){
				newDis = newPrice*15/100; newPrice = newPrice-newDis;
		}
		if(newQuantity<=0) {
            rc = alert('The quantity entered is incorrect');
        } else if(newOption=="out of stock") {
            rc = alert('Sorry This Product Is Out Of Stock');
        } else {
            if (confirm('Add '+newQuantity+' x '+newProduct+' - '+newOption+' each? ')) {
                index=document.cookie.indexOf('TheBasket');
                countbegin=(document.cookie.indexOf('=',index)+1);
                countend=document.cookie.indexOf(';',index);
                if(countend==-1) {
                    countend=document.cookie.length;
                }
                document.cookie='TheBasket='+document.cookie.substring(countbegin,countend)+'['+newRef+'|'+newPrice+'|'+newTaxable+'|'+newProduct+'|'+newOption+'|'+newWeight+'|'+newQuantity+']; expires=Monday, 31-December-2012 08:00:00 GMT';
				timeoutPeriod=0;
				setTimeout("location.reload(true);",timeoutPeriod);
            }
        }
    }