var instock = true; function showInStock(){ div = document.getElementById('showInStock'); ATCDiv = document.getElementById('addToCartButton'); ATCDiv2 = document.getElementById('addToCartButton2'); if(instock){ div.innerHTML = instockImg; }else{ div.innerHTML = outofstockImg; } if(!backorderItem && !instock){ if(ATCDiv){ ATCDiv.style.fontWeight = 'bold'; ATCDiv.style.color = '#990000'; ATCDiv.innerHTML = 'This item is currently not orderable' } if(ATCDiv2){ ATCDiv2.style.fontWeight = 'bold'; ATCDiv2.style.color = '#990000'; ATCDiv2.innerHTML = 'This item is currently not orderable' } } }