hasbrouck-heights-nj.menstrtclinic.com
Open in
urlscan Pro
188.114.96.3
Public Scan
URL:
https://hasbrouck-heights-nj.menstrtclinic.com/
Submission: On November 04 via api from US — Scanned from NL
Submission: On November 04 via api from US — Scanned from NL
Form analysis
1 forms found in the DOM<form id="form" class="white-popup-block mfp-hide">
<div class="popup_box ">
<div class="popup_inner">
<style>
.header-mobile .nav-links {
display: none;
}
.header-mobile input[type=checkbox]:checked~.nav-links {
display: block !important;
}
/*.cf .cf-input:hover {
opacity: 0.7;
}
.cf .cf-input:focus {
opacity: 1;
outline: none;
border: 1px solid #ccc;
}*/
.cf .cf-button:hover {
background-color: transparent;
color: #0c75fb
}
.cf {
margin: 0 auto !important;
max-width: 400px;
background-color: rgba(255, 255, 255, .5);
border-radius: 25px;
padding: 25px;
}
/* .cf p {
margin: 0;
}
.cf .cf-title {
font-size: 27px;
margin: 0 0 15px;
color: #0c75fb;
font-weight: 700;
}
.cf .cf-input {
transition: .3s;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px 15px;
width: 100%;
margin-bottom: 15px;
box-sizing: border-box;
}*/
.cf .cf-button {
transition: .3s;
background-color: #0c75fb;
color: #fff;
padding: 10px 15px;
border: 1px solid #1261c4;
border-radius: 15px;
cursor: pointer;
}
.cf label {
margin-bottom: 25px;
position: relative;
display: block;
border-bottom: 1px solid #ddd;
width: 100%;
margin-top: 25px;
}
.cf input {
width: 100%;
box-sizing: border-box;
padding: 10px 15px;
border: none;
outline: none;
line-height: 16px;
margin: 0;
background-color: transparent;
}
.cf input::placeholder {
opacity: 0;
}
.cf span {
position: absolute;
top: 0;
left: 15px;
transform: translateY(10px);
font-size: 16px;
color: #000;
transition-duration: 300ms;
cursor: text;
}
.cf label:focus-within>span,
.cf input:not(:placeholder-shown)+span {
color: #000;
transform: translateY(-15px);
font-weight: 500;
}
</style>
<div id="cf-6" class="cf">
<h2 class="cf-title">Get Free Consultation</h2>
<label>
<input type="text" id="cf-name" class="cf-name" placeholder="
Your Name">
<span>Your Name</span>
</label>
<label>
<input type="email" id="cf-email" class="cf-email" placeholder="
Your Email">
<span>Your Email</span>
</label>
<label>
<input type="text" id="cf-phone" inputmode="decimal" class="cf-phone" placeholder="Your Phone">
<span>Your Phone</span>
</label>
<label>
<input type="number" id="cf-age" pattern="[0-9]*" inputmode="decimal" class="cf-age" maxlength="3" placeholder="Your Age">
<span>Your Age</span>
</label>
<!--<p>Your Name</p>
<input class="cf-input cf-name" type="text" placeholder="Your Name">
<p>Your Email</p>
<input class="cf-input cf-email" type="text" placeholder="Your Email">
<p>Your Phone</p>
<input class="cf-input cf-phone" type="text" placeholder="Your Phone">
<p>Your Age</p>
<input class="cf-input cf-age" maxlength="3" type="text" placeholder="Your Age">-->
<!--<textarea class="cf-input cf-message" placeholder="Your Message"></textarea>-->
<button onclick="if (!window.__cfRLUnblockHandlers) return false; cfSend($(this).parent().attr('id'));" class="cf-button" type="button">Send</button>
</div>
<script src="/import1/assets/jquery-3.4.1-dist/js/jquery-3.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$("#cf-6 .cf-email").blur(function() {
const validateEmail = (email) => {
return String(email).toLowerCase().match(/^(([^<>()[\]\.,;:\s@"]+(\.[^<>()[\]\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/);
};
let cf_email = $("#cf-6 .cf-email").val();
if (!validateEmail(cf_email)) {
$("#cf-6 .cf-email").css("border-bottom", "1px solid red");
} else {
$("#cf-6 .cf-email").css("border-bottom", "unset");
}
});
$("#cf-6 .cf-phone").blur(function() {
const validatePhone = (phone) => {
phone = phone.replace(/[^0-9]/g, "");
if (phone.length >= 10 && phone[0] != "1") {
return true;
} else {
if (phone[0] == "1" && phone.length >= 11) {
return true;
} else {
return false;
}
}
/*return true;
return String(phone).toLowerCase().match(
/^[\+]?[(]?[0-9]{3}[)]?[-\s\.]?[0-9]{3}[-\s\.]?[0-9]{4,6}$/
);*/
};
let cf_phone = $("#cf-6 .cf-phone").val();
if (!validatePhone(cf_phone)) {
$("#cf-6 .cf-phone").css("border-bottom", "1px solid red");
} else {
$("#cf-6 .cf-phone").css("border-bottom", "unset");
}
});
function cfSend(idForm) {
let cf_name = $("#" + idForm + " .cf-name").val();
let cf_phone = $("#" + idForm + " .cf-phone").val();
let cf_email = $("#" + idForm + " .cf-email").val();
let cf_age = $("#" + idForm + " .cf-age").val();
let cf_message = $("#" + idForm + " .cf-message").val();
const validateEmail = (email) => {
return String(email).toLowerCase().match(/^(([^<>()[\]\.,;:\s@"]+(\.[^<>()[\]\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/);
};
const validatePhone = (phone) => {
phone = phone.replace(/[^0-9]/g, "");
if (phone.length >= 10 && phone[0] != "1") {
return true;
} else {
if (phone[0] == "1" && phone.length >= 11) {
return true;
} else {
return false;
}
}
};
if (!cf_name) {
$("#" + idForm + " .cf-name").css("border-bottom", "1px solid red");
}
if (!cf_phone) {
$("#" + idForm + " .cf-phone").css("border-bottom", "1px solid red");
}
if (!cf_email) {
$("#" + idForm + " .cf-email").css("border-bottom", "1px solid red");
}
if (!cf_age) {
$("#" + idForm + " .cf-age").css("border-bottom", "1px solid red");
}
if (!cf_message) {
$("#" + idForm + " .cf-message").css("border-bottom", "1px solid red");
}
if (!validateEmail(cf_email)) {
$("#" + idForm + " .cf-email").css("border-bottom", "1px solid red");
}
if (!validatePhone(cf_phone)) {
$("#" + idForm + " .cf-phone").css("border-bottom", "1px solid red");
}
if (!cf_name || !validatePhone(cf_phone) || !cf_email || !cf_age || !validateEmail(cf_email)) {
$("html, body").animate({
scrollTop: $("#" + idForm).offset().top
}, 2000);
} else {
$.post("/", {
cf_name: cf_name,
cf_phone: cf_phone,
cf_email: cf_email,
cf_age: cf_age,
cf_message: cf_message
}).done(function() {
$("#" + idForm).html(" <h2>Thank you\n" + " </h2> \n" + " <p>\n" +
" We received your initial inquiry. In keeping with our Privacy Policy, your information will be held in the strictest confidence. No one will ever see this information except our local doctors and their assistants.\n" +
" </p>");
}).fail(function() {
alert("error");
});
}
}
</script>
</div>
</div>
</form>
Text Content
* info@menstrtclinic.com Hormone therapy * Our Services * Testosterone replacement therapy * HGH clinic * Menopause treatment * Hormone replacement therapy * Bio identical Hormone treatment * Peptide therapy * Contact us Get Free Consultation MENU * Our Services + * Testosterone replacement therapy * HGH clinic * Menopause treatment * Hormone replacement therapy * Bio identical Hormone treatment * Peptide therapy * Contact us + HORMONE REPLACEMENT THERAPY HASBROUCK HEIGHTS, NJ - OPTIMAL HORMONE CARE TABLE OF CONTENTS * What is Hormone Replacement Therapy? * Who Needs Hormone Replacement Therapy? * Benefits of Balanced Hormone Levels * Symptoms of Hormone Imbalance * Basics of Bioidentical HRT * Treatment Options Overview * Why Timely Treatment is Crucial * Why Choose Optimal Hormone Care? * Conclusion WHAT IS HORMONE REPLACEMENT THERAPY? Hormone replacement therapy involves restoring hormones that are lacking or out of balance. It can significantly improve wellbeing and vitality in both men and women. While levels naturally decline with age, a shortage can occur at any age due to medical conditions, menopause, or lifestyle factors. Replacing these hormones can provide extensive benefits. Optimal Hormone Care specializes in natural bioidentical hormone therapy using plant-based hormones identical to those made by the human body. Our experienced practitioners provide customized treatment plans to restore optimal hormonal balance based on your unique health profile. WHO NEEDS HORMONE REPLACEMENT THERAPY? Patients with hormonal imbalance due to: * Menopause and perimenopause in women * Andropause ("male menopause") in men * Medical conditions such as pituitary gland disorders * Removal of ovaries, testes, thyroid, or adrenal glands * Some cancer treatments * Chronic stress * Poor diet, lack of exercise, obesity Hormone testing is crucial to determine if hormone therapy is right for you. Our practitioners can order labs and interpret the results. OUR SERVICES TESTOSTERONE REPLACEMENT THERAPY Learn More HGH CLINIC Learn More MENOPAUSE TREATMENT Learn More HORMONE REPLACEMENT THERAPY Learn More BIO IDENTICAL HORMONE TREATMENT Learn More PEPTIDE THERAPY Learn More RESTORE HORMONES, REGAIN HEALTH WITH BIOIDENTICAL THERAPY. Get Free Consultation BENEFITS OF BALANCED HORMONE LEVELS Properly balanced hormones provide extensive health advantages: PHYSICAL BENEFITS * Increased muscle mass and decreased body fat * Stronger bones and reduced fracture risk * Improved heart health and cholesterol levels * Enhanced sleep quality * Greater energy levels and stamina * Better skin, hair, and nail condition * Reduced hot flashes and night sweats * Healthier weight and body composition MENTAL AND EMOTIONAL BENEFITS * Improved mood, sense of wellbeing, and enjoyment of life * Reduced anxiety, irritability, and mood swings * Enhanced memory, focus and concentration * Increased self-confidence and motivation SEXUAL HEALTH BENEFITS * Increased sex drive and satisfaction * Improved sexual response and performance * Decreased vaginal dryness discomfort Balanced hormones influence virtually every body system and cell, making proper levels vital for optimal health. SYMPTOMS OF HORMONE IMBALANCE Declining hormones cause many symptoms. Common signs of imbalance include: ESTROGEN DEFICIENCY * Hot flashes, night sweats * Vaginal dryness, discomfort * Bladder issues like urgency or leakage * Loss of breast fullness * Skin changes, dryness PROGESTERONE DEFICIENCY * Anxiety, irritability, mood swings * Sleep issues like insomnia * Weight gain, fluid retention * Loss of bone mass TESTOSTERONE DEFICIENCY * Low sex drive, erectile dysfunction * Lack of energy, fatigue * Loss of muscle mass * Increased body fat and reduced strength * Depressive moods DHEA DEFICIENCY * Brain fog, memory lapses * Dull hair and nails * Weakened immune function * Bone loss * Reduced muscle tone Careful evaluation of symptoms and hormone testing are needed to determine which hormones require treatment. Our practitioners have advanced training in identifying deficiencies. BASICS OF BIOIDENTICAL HRT Optimal Hormone Care specializes in bioidentical hormone therapy using completely natural hormones derived from yam or soy plants that are molecularly identical to the hormones produced by the human body. This allows perfect recognition and optimal utilization by hormone receptors. Treatment plans are fully customized based on each patient's lab tests, medical history, symptoms, and treatment goals. Highly advanced hormone testing allows our practitioners to determine precise imbalances for targeted therapy. Below outlines the general process for starting bioidentical HRT: Initial Consultation * Medical history review * Discussion of symptoms and goals * Physical exam as needed * Initial hormone lab test orders Follow-Up Visit * Review of test results * Recommend customized hormones and dosage * Explain treatment plan details and expectations * Prescribe bioidentical hormones Follow-Up Monitoring * Symptom evaluations * Repeat hormone labs * Monitor progress and adjust medications as needed We also provide exercise, nutrition, and lifestyle guidance for maximizing results. RESTORE HORMONES, IMPROVE WELLBEING. CONTACT OPTIMAL HORMONE CARE TODAY. Get Free Consultation TREATMENT OPTIONS OVERVIEW Optimal Hormone Care offers a variety of bioidentical hormone therapy preparations allowing patients ultimate treatment flexibility: Treatment Method Frequency Duration Pros Cons Oral capsules Daily Short-actingMultiple doses needed Easy to use Absorption issues Sublingual drops/tablets Daily Short duration Convenience Frequent dosing Topical creams/gels Daily Short-medium action Steady absorption Skin irritation possible Pellet implants Every 3-6 months Long-acting Convenient Steady release Minor surgery Injections Weekly/bi-weekly Medium-long action Precision dosing Injections needed We offer all these options allowing patients to choose their optimal method based on lifestyle factors, convenience, and personal preference. WHY TIMELY TREATMENT IS CRUCIAL Seeking timely treatment for hormonal decline provides major advantages including: * Preventing progression of deficiency signs & symptoms - The longer imbalance persists, the more symptoms manifest causing worsening discomfort. Early treatment can halt this. * Optimizing results - Intervening shortly after onset maximizes treatment response and symptomatic relief. The longer one waits, the harder deficiency can be to fully reverse. * Reducing risk of serious long-term consequences - If left untreated, hormone loss significantly raises risks of heart disease, osteoporosis, Alzheimer's, and other severe chronic illnesses. Prompt treatment reduces these risks. * Improving quality of life - Balanced hormones are key for overall health and vitality. Allowing deficiency to advance means extended time suffering fatigue, weight gain, sexual issues, and other problems treatment can improve. In short - the sooner hormone imbalance is identified and corrected, the better the outcome. We encourage not waiting once suspicious symptoms emerge. WHY CHOOSE OPTIMAL HORMONE CARE? Optimal Hormone Care provides the most advanced bioidentical hormone therapy available. What sets us apart: * Leading anti-aging and regenerative medicine specialists * Customized treatment plans based on advanced hormone testing * The widest range of hormone preparations * Primary focus on optimizing wellness, vitality and disease prevention * Strong emphasis on lifestyle, nutrition and exercise guidance * Ongoing progress monitoring and treatment adjustments * Enhanced practitioner accessibility We are passionate about helping patients achieve lifelong health, disease prevention and maximum quality of life through precision hormone balance restoration. Contact us today to see how our approaches can help you live better and feel younger! CONCLUSION Hormone replacement therapy can be a life-changing treatment for individuals suffering from hormonal imbalances. By replenishing crucial hormones, it can alleviate a wide range of symptoms and improve overall well-being. At Optimal Hormone Care, we prioritize personalized care, using advanced testing and a comprehensive approach to restore optimal hormone levels. Our experienced practitioners are dedicated to helping you achieve vitality, longevity, and an enhanced quality of life. If you're experiencing symptoms of hormonal imbalance, don't hesitate to contact us and explore the benefits of bioidentical hormone therapy. OTHER LOCATIONS * piney flats * Vienna * Marlow * Ephrata * Corning * Mountain Top * Harrington Park * Cicero * Lords Valley * Chesterfield Hormone therapy LINKS * Our Locations * Terms of Service * Privacy policy * Our Glossary * Our Services * Testosterone replacement therapy * HGH clinic * Menopause treatment * Hormone replacement therapy * Bio identical Hormone treatment * Peptide therapy * Contact us CONTACTS info@menstrtclinic.com Copyright © Optimal Hormone Care 2024 - All rights reserved GET FREE CONSULTATION Your Name Your Email Your Phone Your Age Send Get Free Consultation