function vatCost(){ 	
	var tableRowCount=document.getElementById('categoryproduct');
	
	for (var i = 0; i < tableRowCount.rows.length; i++)
			{  				
				var cPrice=tableRowCount.rows[i].cells[2].innerHTML;
						
			    cPrice=cPrice.replace("&nbsp;" , "");
				cPrice=cPrice.replace("From" , "");
				cPrice = cPrice.replace("£" , " ");
				cPrice = cPrice.replace("&pound;" , " ");
				cPrice = cPrice.replace("." , "");
				cNum = cPrice;					
				if (cNum==99999999 || cNum==000)
				{			
					var cell = tableRowCount.rows[i].cells[2];	
					cell.innerHTML = "";												
				}	
			
			}
		
	}