function initialize(type) {
   if(type == 'home') {
      var targetID = 'body'
   } else {
      var targetID = 'bodycontent'
   }
   var height = document.getElementById(targetID).scrollHeight
   if(type == 'home') {
      var top = height + 0
      document.getElementById('footer').style.top = top + 'px'
      document.getElementById('body').style.height = height + 168
   } else {
      var top = height + 0
      document.getElementById('body').style.height = height
   }

   document.getElementById('footer').style.display = 'block'
   
}
function shiftWidth() {
   var targetID = 'pagebody'
   if(document.all) {
      if(document.body.offsetWidth < 890) {
         document.all.item(targetID).style.left = '425px'
      } else {
         document.all.item(targetID).style.left = '50%'
      }
   } else {
      if(document.getElementById) {
         if(window.innerWidth < 890) {
            document.getElementById(targetID).style.left = '425px'
         } else {
            document.getElementById(targetID).style.left = '50%'
         }
      }
   }
   document.getElementById('pagebody').style.visibility = 'visible'
}
function arrowoff(name) {
   document.images[name].src = "images/1x1.gif"
}
function arrowon(name) {
   document.images[name].src = "images/button_checkmark.gif"
}
function downform() {
   if(confirm("Online Ordering will be available soon. If you would like to download a PDF Order Form to mail or fax, click 'OK' below. Otherwise, click 'Cancel'.")) {
      window.open('order_form.pdf','_blank')
   }
}
