JavaScript is adding numbers 7 and 11 and getting 711, not 18 like it should be. Has to be dynamic which is why I'm using getElementByID. In this sample Hardcopy = 7 ElectronicCopy = 11. Here is the sample code.
var TotalSites = document.getElementById("TotalSites").innerHTML;
var HardCopy = document.getElementById("ImagingMaterialsHardCopy").innerHTML;
var ElectronicCopy = document.getElementById("ImagingMaterialsElectronic").innerHTML;
var LTR = HardCopy + ElectronicCopy;
var LefttoRec = LTR - TotalSites;