window.onload = function() {
  document.getElementById("total").innerHTML = 'total items: 0 | total price: $0.00 <a href="#" onclick="viewTab(this, \'results\');">Checkout</a>';
  document.getElementById("billing_info").innerHTML = '';
  var inputElements = document.getElementsByTagName('input');
  for (i=0; inputElements[i]; i++) {
	inputElements[i].setAttribute('autocomplete', 'off');
  }
  viewTab(document.getElementById("first"), 'tab_a');
  changeOrder('/checkout.php?checkout');
  clearAllFields();
}