onloadEvents = [];
//
window.onload = function(){
  onloadEvents.each(function(f){
   f(); 
  });
}


function do_vat_box() {
  var eu_countries = ["Austria", "Belgium", "Bulgaria", "Cyprus", "Czech Republic", "Denmark", "Estonia", "Finland", "France", "Germany", "Greece", "Hungary", "Ireland", "Italy", "Latvia", "Lithuania", "Luxembourg", "Malta", "Netherlands", "Poland", "Portugal", "Romania", "Slovakia", "Slovenia", "Spain", "Sweden"];
  if (eu_countries.indexOf($F('customer_country')) > -1) {
    $('customer_vat_box').show();
  } else {
    $('customer_vat_box').hide();
    $('customer_vat_number').value = '';
  }
}


function showHidePanel(element){
   	box_div = $(element);
	box_bottom_div = $(element+'_bottom');
   box_bottom_div.blur();
  if(box_div.hasClassName('min')){
    box_div.removeClassName('min');
    box_bottom_div.removeClassName('min');
  } else {
    box_div.addClassName('min');
    box_bottom_div.addClassName('min');

  }
}
