fmcna.com
Open in
urlscan Pro
18.161.34.113
Public Scan
Submitted URL: https://protect-us.mimecast.com/s/uO1OC4xGzQslEjJpuO_QDs?domain=fmcna.com
Effective URL: https://fmcna.com/
Submission: On October 17 via api from US — Scanned from US
Effective URL: https://fmcna.com/
Submission: On October 17 via api from US — Scanned from US
Form analysis
5 forms found in the DOMGET /search/
<form class="form-search" action="/search/" method="get">
<input type="hidden" name="_charset_" value="UTF-8">
<label for="search_840010491_0" class="searchBox-label"> <a class="search-clear-btn-utility-nav"><span class="mobile-clear-text">clear</span><span class="desktop-clear-text"></span></a><input type="text" name="q" id="search_840010491_0"
maxlength="2048" class="input-medium search-query" placeholder="Search FMCNA.com"> Search</label>
<button type="submit" class="button" tabindex="-1"> Go </button>
</form>
GET /search/
<form class="form-search" action="/search/" method="get">
<input type="hidden" name="_charset_" value="UTF-8">
<label for="search_2127095826_1" class="searchBox-label"> <input type="text" name="q" id="search_2127095826_1" maxlength="2048" class="input-medium search-query" placeholder="Search FMCNA.com"> Search</label>
<button type="submit" class="button" tabindex="-1"> Go </button>
</form>
<form id="mktoForm_1324" novalidate="novalidate" class="mktoForm mktoHasWidth mktoLayoutLeft" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: rgb(51, 51, 51); width: 271px;">
<style type="text/css">
.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
color: #fff;
border: 1px solid #75ae4c;
padding: 0.4em 1em;
font-size: 1em;
background-color: #99c47c;
background-image: -webkit-gradient(linear, left top, left bottom, from(#99c47c), to(#75ae4c));
background-image: -webkit-linear-gradient(top, #99c47c, #75ae4c);
background-image: -moz-linear-gradient(top, #99c47c, #75ae4c);
background-image: linear-gradient(to bottom, #99c47c, #75ae4c);
}
.mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
border: 1px solid #447f19;
}
.mktoForm .mktoButtonWrap.mktoSimple .mktoButton:focus {
outline: none;
border: 1px solid #447f19;
}
.mktoForm .mktoButtonWrap.mktoSimple .mktoButton:active {
background-color: #75ae4c;
background-image: -webkit-gradient(linear, left top, left bottom, from(#75ae4c), to(#99c47c));
background-image: -webkit-linear-gradient(top, #75ae4c, #99c47c);
background-image: -moz-linear-gradient(top, #75ae4c, #99c47c);
background-image: linear-gradient(to bottom, #75ae4c, #99c47c);
}
</style>
<div class="mktoFormRow">
<div class="mktoFormCol" style="margin-bottom: 10px;">
<div class="mktoOffset mktoHasWidth" style="width: 10px;"></div>
<div class="mktoFieldWrap">
<div class="mktoHtmlText mktoHasWidth" style="width: 260px;"><!--FORM SOLUTION-->
<script>
// <![CDATA[
//Custom Solution Logic
////// DOM Changes /////
function instantiateAllFieldVars() {
///// Declare Variables
var newsLetterSignUpEmailAddress = document.querySelector("form#mktoForm_1324 #f_emailAddress");
var newsLetterSignUpEmailAddressLabel = document.querySelector("form#mktoForm_1324 #Lblf_emailAddress");
/////
newsLetterSignUpEmailAddress.addEventListener('focusin', function() {
newsLetterSignUpEmailAddressLabel.classList.add('fadeIn');
var count = 0;
this.onfocus = function() {
count++;
console.log('count is at ' + count);
if (count > 0) {
this.classList.add('requiredBorder');
}
}
});
newsLetterSignUpEmailAddress.addEventListener('focusout', function() {
newsLetterSignUpEmailAddressLabel.classList.remove('fadeIn');
if (this.value !== "") {
this.classList.remove('requiredBorder');
}
});
//// Manipulate DOM to achieve what Marketo can't offer OTTB
newsLetterSignUpEmailAddress.setAttribute('placeholder', 'Email');
}
/* Setting a Time Out is necessary, otherwise the variables get instantiated before the page data and elements have completely loaded -- meaning they wouldn't actually get picked up! */
setTimeout(instantiateAllFieldVars, 200);
////// END DOM Changes /////
MktoForms2.whenReady(function(form) {
window.MktoForms2BehaviorsRunCache = window.MktoForms2BehaviorsRunCache || {};
(function() {
// Bool variable to insure the function only fires once
var formHasBeenFocused = false;
// unique function name
var thisBehavior = "marketoFormSolution";
if (thisBehavior in window.MktoForms2BehaviorsRunCache) {
return;
} else {
window.MktoForms2BehaviorsRunCache[thisBehavior] = new Date();
}
//erase _mkto_trk cookies on form load
document.cookie = "_mkto_trk=;expires=Thu, 01 Jan 1970;path=/;domain=.fmcna.com";
document.cookie = "_mkto_trk=;expires=Thu, 01 Jan 1970;path=/;domain=" + location.hostname;
if (!formHasBeenFocused) {
//1st partition
if (!formHasBeenFocused) {
// pauses the form on initial submit
form.onSubmit(function() {
// Check if the form is submittable
if (form.submittable() && !formHasBeenFocused) {
// Set it to be non submittable
form.submittable(false);
}
//remove marketo tracking cookie on form submit
//add the tracking field to be submitted
form.addHiddenFields({
"_mkt_trk": ""
});
//clear the value during the onSubmit event to prevent tracking association
form.vals({
"_mkt_trk": ""
});
//solution logic
if (!formHasBeenFocused) {
// grabs values (from Form - can set by id or name)
var emailAddress = document.getElementById('f_emailAddress').value;
//partition 1
//sets api URL [SANDBOX]
// var parOneURL = "https://apimg-mrkto-dtinp-use2-qa1.azure-api.net/marketo/GetExistingMarketoRecordKey?emailAddress=" + emailAddress + "&partitionId=1";
//sets api URL [PRODUCTION]
var parOneURL = "https://apimg-mrkto-dtipd-use2-pd1.azure-api.net/marketo/GetExistingMarketoRecordKey?emailAddress=" + emailAddress + "&partitionId=1";
//searches database
const xhr = new XMLHttpRequest();
xhr.open('GET', parOneURL);
// logic if the get request leads to an error (treat as new email)
xhr.onerror = function() {
function_two();
}
xhr.onload = () => {
// parse the response into JSON
const data1 = JSON.parse(xhr.response);
// set variable of specific record
const firstParRecordID = data1.recordKey;
// if 'Email Exists == "yes" '
if (firstParRecordID != null) {
// addHiddenFields (currently set with !null rules for each field pulled from form)
if (emailAddress != null) {
form.addHiddenFields({
"Email": emailAddress
});
}
form.addHiddenFields({
"recordKey": firstParRecordID
});
// Submit Form
// insure the fucntion only fires once
formHasBeenFocused = true;
// Set it to be submittable
form.submittable(true);
// Submit the form
form.submit();
//testing
// var formValues = form.vals();
// console.log("Email is Known Path - the form submits: " + JSON.stringify(formValues));
}
//End email existis == "yes"
if (firstParRecordID == null) {
//if there is noththing to submit, then the next function is called
function_two();
}
}
xhr.send();
};
});
};
//No email exists
function function_two() {
// grabs values (from Form - can set by id or name)
//email
var emailAddress = document.getElementById('f_emailAddress').value;
//first name
var theFirstName = document.getElementById('f_firstName');
if (theFirstName != null) {
var firstName = document.getElementById('f_firstName').value;
}
//last name
var theLastName = document.getElementById('f_lastName');
if (theLastName != null) {
var lastName = document.getElementById('f_lastName').value;
}
// addHiddenFields (currently set with !null rules for each field pulled from form)
if (emailAddress != null) {
form.addHiddenFields({
"Email": emailAddress
});
}
if (theFirstName != null) {
form.addHiddenFields({
"first": firstName
});
}
if (theLastName != null) {
form.addHiddenFields({
"last": lastName
});
}
form.addHiddenFields({
"tempID": "form"
});
// Submit Form
// insure the fucntion only fires once
formHasBeenFocused = true;
// Set it to be submittable
form.submittable(true);
// Submit the form
form.submit();
//testing
// var formValues = form.vals();
// console.log("Email Unknown Path - the form submits: " + JSON.stringify(formValues));
};
};
//End Custom Solution Logic
})();
});
// ]]>
</script>
</div>
<div class="mktoClear"></div>
</div>
<div class="mktoClear"></div>
</div>
<div class="mktoClear"></div>
</div>
<div class="mktoFormRow">
<div class="mktoFieldDescriptor mktoFormCol" style="margin-bottom: 10px;">
<div class="mktoOffset" style="width: 10px;"></div>
<div class="mktoFieldWrap mktoRequiredField"><label for="f_emailAddress" id="Lblf_emailAddress" class="mktoLabel mktoHasWidth" style="width: 100px;">
<div class="mktoAsterix">*</div>Email
</label>
<div class="mktoGutter mktoHasWidth" style="width: 10px;"></div><input id="f_emailAddress" name="f_emailAddress" placeholder="Email" maxlength="255" aria-labelledby="Lblf_emailAddress Instructf_emailAddress" type="text"
class="mktoField mktoTextField mktoHasWidth mktoRequired" aria-required="true" style="width: 150px;"><span id="Instructf_emailAddress" tabindex="-1" class="mktoInstruction"></span>
<div class="mktoClear"></div>
</div>
<div class="mktoClear"></div>
</div>
<div class="mktoClear"></div>
</div>
<div class="mktoFormRow">
<div class="mktoFormCol" style="margin-bottom: 10px;">
<div class="mktoOffset mktoHasWidth" style="width: 10px;"></div>
<div class="mktoFieldWrap">
<div class="mktoHtmlText mktoHasWidth" style="width: 260px;"></div>
<div class="mktoClear"></div>
</div>
<div class="mktoClear"></div>
</div>
<div class="mktoClear"></div>
</div>
<div class="mktoButtonRow"><span class="mktoButtonWrap mktoSimple" style="margin-left: 120px;"><button type="submit" class="mktoButton">▶</button></span></div><input type="hidden" name="formid" class="mktoField mktoFieldDescriptor"
value="1324"><input type="hidden" name="munchkinId" class="mktoField mktoFieldDescriptor" value="957-NEN-070">
</form>
<form novalidate="novalidate" class="mktoForm mktoHasWidth mktoLayoutLeft" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: rgb(51, 51, 51); visibility: hidden; position: absolute; top: -500px; left: -1000px; width: 1600px;">
</form>
GET /search/
<form class="form-search" action="/search/" method="get">
<input type="hidden" name="_charset_" value="UTF-8">
<label for="search_2127095826_2" class="searchBox-label"> <input type="text" name="q" id="search_2127095826_2" maxlength="2048" class="input-medium search-query" placeholder="Search FMCNA.com"> Search</label>
<button type="submit" class="button" tabindex="-1"> Go </button>
</form>
Text Content
This site uses cookies and other tracking technologies to assist with navigation and your ability to provide feedback, analyze your use of our products and services, assist with our promotional and marketing efforts, and provide content from third parties. Read our cookie policy. Yes, I understand Skip to main content * Kidney Care * Vascular Access Care * Value Based Care * Laboratory & Diagnostic Services * Renal Pharmacy * Go to All Patient Care PATIENT CARE * Practice Management * Practice Technology * Cardiology Lab Partnerships * Renal Research * Frenova Renal Research * Renal Research Institute * Physician Recruitment * Apheresis Services * Go to All Practice Support PRACTICE SUPPORT * In-Center Dialysis Equipment * 2008T BlueStar Hemodialysis Machine * AquaBplus * AquaC UNO H * Go to All In-Center Dialysis Equipment * Home Dialysis Products * NxStage VersiHD * NxStage System One S * Nx2me Connected Health * VersiPD Cycler System * Liberty Select Cycler * stay • safe System / CAPD * Kinexus * Go to All Home Dialysis Products * Critical Care * NxStage System One S with NxView * Novalung * Go to All Critical Care Products * Fluid Management * Crit-Line III Monitor * Crit-Line IV Monitor * CLiC Device * Go to All Fluid Management * Disposables * Dialyzers * Concentrates * Bloodlines * Go to All Disposables * Pharmaceuticals * Venofer * Velphoro * Phoslyra * Go to All Pharmaceuticals * Go to All Products PRODUCTS * Insights Hub * Research & Innovation * Home Dialysis * Value Based Care * Our Impact * Go to All Insights Hub * Global Annual Medical Report * Field Notes Podcast * Global Medical Office Dialogues * Go to All Insights INSIGHTS * Our Company * Overview * Mission, Vision & Values * Our Leadership Team * Our History * News Releases * Together Ahead * Sustainability * Overview * Our People * Our Patients * Our Planet * Our Communities * Our Business * Supplier Information * Overview * Transacting with Us * Supplier Training * Procurement Policies * FAQs * Investor Relations * Contact ABOUT * Careers * Support * clear Search Go More * Careers * Support * Careers * Support * PATIENT CARE * PRACTICE SUPPORT * PRODUCTS * INSIGHTS * ABOUT Back Patient Care We deliver high-quality care with innovation and empathy. GO TO ALL PATIENT CARE Kidney Care Vascular Access Care Value Based Care Laboratory & Diagnostic Services Renal Pharmacy Back We deliver high-quality care with innovation and empathy. GO TO ALL PRACTICE SUPPORT Practice Management Practice Technology Cardiology Lab Partnerships * Renal Research Back Frenova Renal Research Renal Research Institute Physician Recruitment Apheresis Services PRACTICE SUPPORT Back Products Thousands of end stage renal disease experts turn to Renal Therapies Group for pharmaceuticals and the most prescribed technologies in the industry. GO TO ALL PRODUCTS * In-Center Dialysis Equipment * Home Dialysis Products * Critical Care * Fluid Management * Disposables * Pharmaceuticals Back 2008T BlueStar Hemodialysis Machine AquaBplus AquaC UNO H GO TO ALL IN-CENTER DIALYSIS EQUIPMENT Back NxStage VersiHD NxStage System One S Nx2me Connected Health VersiPD Cycler System Liberty Select Cycler stay • safe System / CAPD Kinexus GO TO ALL HOME DIALYSIS PRODUCTS Back NxStage System One S with NxView Novalung GO TO ALL CRITCAL CARE Back Crit-Line lll Monitor Crit-Line lV Monitor CLiC Device GO TO ALL FLUID MANAGEMENT Back Dialyzers Concentrates Bloodlines GO TO ALL DISPOSABLES Back Venofer Velphoro Phoslyra GO TO ALL PHARMACEUTICALS Back Every day, we’re working tirelessly to transform the future of healthcare. Because every patient deserves treatment as strong as they are. GO TO ALL INSIGHTS Insights * Insights Hub Back Research and Innovation Home Dialysis Value Based Care Our Impact GO TO ALL INSIGHTS HUB Global Annual Medical Report Field Notes Podcast Global Medical Office Dialogues Back Our Company * Our Company Back Overview Mission, Vision & Values Our Leadership Team Our History News Releases Together Ahead * Sustainability Back Overview Our People Our Patients Our Planet Our Communities Our Business * Supplier Information Back Overview Transacting With Us Supplier Training Procurement Policies FAQs Investor Relations Contact * Careers * Support More * Careers * Support * Careers * Support × Search Go clear✕ Browser Upgrade Recommended: Our website has detected that you are using a version of Internet Explorer that will prevent you from accessing certain features on FMCNA.com. We strongly recommend that you use a different browser to optimize your viewing experience. Supported browsers include Chrome, Edge, Firefox, and Safari. Fresenius Health Partners, InterWell Health, and Cricket Health have merged to form InterWell Health. We are setting the new standard in value-based kidney care in the U.S., driving innovation and transformation in the industry. Visit TransformingKidneyCare.com for more information. Open main menu Close main menu FRESENIUS MEDICAL CARE NORTH AMERICA With comprehensive solutions for people living with chronic kidney disease and related conditions, we are working together to improve the quality of life of every patient, every day. We are transforming healthcare through research, innovation, and compassion. OUR COMPANY * Male nurse caring for patient PATIENT CARE PATIENT CARE Working together, we can deliver incomparable, compassionate care * Dialysis Services Offering personalized patient care * Vascular Services Delivering outpatient vascular care * Renal Pharmacy Focusing on renal health * LABORATORY SERVICES Leading renal lab services Open and Close Button Close button Created with Sketch. * Man reading tablet while undergoing Dialysis PRODUCTS PRODUCTS Improving outcomes with products backed by research and innovation * In-Center Dialysis Equipment * Home Dialysis Products * Critical Care * Fluid Management * Disposables * Pharmaceuticals Open and Close Button Close button Created with Sketch. * Medical technician using computer with back turned PHYSICIAN SOLUTIONS PHYSICIAN SOLUTIONS Providing resources that support patients and empower your practice * Cardiovascular (CV) Care Pioneering outpatient hybrid CV centers * PRACTICE TECHNOLOGY Creating software tools nephrologists need * PHYSICIAN RECRUITMENT Offering career resources for nephrologists Open and Close Button Close button Created with Sketch. * Medical technician using microscope RESEARCH RESEARCH Discovering and developing better solutions for patients and researchers * CLINICAL DEVELOPMENT SERVICES Managing patient-centered renal research * RENAL RESEARCH Researching renal replacement therapies Open and Close Button Close button Created with Sketch. OUR RESPONSE TO COVID-19 COVID-19 RESOURCE AND EDUCATION CENTER Our number one priority is ensuring the highest levels of safety and care for employees and patients. Learn about the pandemic-specific policies we’ve adopted to help achieve these goals, as well as tips and inspiration for those who provide life-sustaining patient care each day. READ MORE EVIDENCE-BASED INSIGHTS EMBRACING THE COMPLEXITY OF GLOBAL HEALTHCARE Explore this year's Global Annual Medical Report from the Fresenius Medical Care Global Medical Office. This report highlights the ongoing leadership and commitment of our Global Medical Office in advancing our company’s clinical and scientific strategy on behalf of the patients we serve around the world. READ MORE OUR PURPOSE WE ARE THE ONLY COMPANY IN OUR INDUSTRY BRINGING TOGETHER OUR EXPERTISE IN PATIENT CARE WITH THE DEVELOPMENT OF INDUSTRY-LEADING TECHNOLOGIES, PRODUCTS, AND SERVICES. WE TAKE GREAT PRIDE IN THE SUPERIOR CARE WE GIVE TO OUR PATIENTS AND THE BEST-IN-CLASS SERVICE WE PROVIDE TO OUR CUSTOMERS. Bill Valle, CEO Fresenius Medical Care North America VIEW CAREERS NEWS & INSIGHTS Article 5 COVID-19 & RENAL REPLACEMENT THERAPY LESSONS LEARNED IN THE ICU 03.02.2022 LEARN MORE * THE BASICS OF CONTINUOUS KIDNEY REPLACEMENT THERAPY (CKRT) Published 05.24.2022 * LESLIE NICKESON: SUPPORTING DIALYSIS PATIENTS FOR OVER 30 YEARS Published 05.24.2022 * A LOOK AT DIVERSITY, EQUITY, AND INCLUSION WITH MIGNON EARLY Published 05.06.2022 * MOTHER AND DAUGHTER BOND THROUGH WORKING AT FRESENIUS KIDNEY CARE Published 05.04.2022 * 6 CRITICAL CHARACTERISTICS OF KIDNEY REPLACEMENT THERAPY MACHINES (KRT) Published 04.25.2022 SEE ALL To get the latest on Fresenius Medical Care and our services, sign up for our newsletter. * Email ▶ * Find a Center * Patient Care * Support * Doctors Corner * Products * Contact * About * Practice Support * Careers Facebook Twitter LinkedIn Youtube © 2006-2022 Fresenius Medical Care. All Rights Reserved * Privacy Notice * Terms of Use * Notice of Privacy Practices * Accessibility Statement * Sitemap × Search Go clear✕