function togglePublishMyProfile(){
  if($('profile_public_access').getValue() == 1 && !$('profile_friend_of_agilar').getValue()){
    // Enable Publish My Profile
    $('profile_publish_on_website').enable();
  }else{
    // Disable Publish My Profile
    $('profile_publish_on_website').checked = null;
    $('profile_publish_on_website').disable();
  }
}
