// document.observe('dom:loaded', function() {
//   // alert("event fired");
//   $('user_first_name').focus();
//   $('enter_shipping').observe('click', enable_address_info);
//   $('user_expire_reminder_button_yes').observe('click', contract);
//   $('user_expire_reminder_button_no').observe('click', expand);
//   $('user_expire_reminder_reminder_method_email').observe('click', contract_all);
//   $('user_expire_reminder_reminder_method_phone').observe('click', expand_phone);
//   $('user_expire_reminder_reminder_method_mail').observe('click', expand_mail);
//   alert('alert from js file');
// })

function contract(event) {
  $('expire_reminder_form').hide();
}

function expand(event) {
  $('expire_reminder_form').show();
}


function contract_all(event) {
  $('expire_reminder_phone').hide();
  $('expire_reminder_address').hide();
}

function expand_phone(event) {
  $('expire_reminder_phone').show();
  $('expire_reminder_address').hide();
}

function expand_mail(event) {
  $('expire_reminder_phone').hide();
  $('expire_reminder_address').show();
}


function enable_address_info(event) {
/*  if ($('enter_shipping').checked == true) {*/
  $('user_shipping_attributes_line1').disabled = !$('enter_shipping').checked;
  $('user_shipping_attributes_line2').disabled = !$('enter_shipping').checked;
  $('user_shipping_attributes_city').disabled = !$('enter_shipping').checked;
  $('user_shipping_attributes_country').disabled = !$('enter_shipping').checked;
  $('user_shipping_attributes_state').disabled = !$('enter_shipping').checked;
  $('user_shipping_attributes_zip').disabled = !$('enter_shipping').checked;
/*  } else {
    $('user_shipping_attributes_line1').disabled=true;
    $('user_shipping_attributes_line2').disabled=false;
    $('user_shipping_attributes_city').disabled=false;
    $('user_shipping_attributes_country').disabled=false;
    $('user_shipping_attributes_state').disabled=false;
    $('user_shipping_attributes_zip').disabled=false;
  }*/
}


