function tostoggle (box) {
  if (box.checked) {
    enableButton('order','/shop/order');
  } else {
    disableButton('order');
  }
}


/*function flashcart () {
  $('pagecart').highlight();
}


window.addEvent('domready', function(){
  var mySlide = new Fx.Slide('history');
  mySlide.hide();
  $('toggle').addEvent('click', function(e){
    e = new Event(e);
    mySlide.toggle();
    e.stop();
  });
});
*/

