// -----------------------------------------------------------------------------------------// --- Global Variable Check// -----------------------------------------------------------------------------------------if(dvstNewWindow!=false){var dvstNewWindow = true;}if (dvstAdvancedView!=true){var dvstAdvancedView = false;}if (dvstAdvancedView == true){if (dvstCss!='small'&&dvstCss!='narrow'&&dvstCss!='none'){var dvstCss = 'advanced';}} else {if (dvstCss!='advanced'&&dvstCss!='narrow'&&dvstCss!='none'){var dvstCss = 'small';}}if (dvstCondition != 'Cardiothoracic' && dvstCondition != 'General Surgery' && dvstCondition != 'Gynecology' && dvstCondition != 'Urology') {  var dvstCondition = 'all';}// -----------------------------------------------------------------------------------------// --- Style sheet, and style addition functions// -----------------------------------------------------------------------------------------if (dvstCss=='none'){var css = '';} else {var css = "#dvs-adv-search { color: #666;font-family: Arial, Helvetica, Verdana;font-size: 13px;overflow: hidden;height: auto;background-color: #fff;text-align: left;border:1px dotted #B7B7B7;}#dvs-adv-search h2 {font-family:Arial,Helvetica,Verdana;border-bottom:1px dotted #B7B7B7;color:#366EB8;font-size:14px;font-weight:normal;height:28px;padding:11px 0 0 14px;width:100%;margin: 0;}#dvs-adv-search p {padding: 10px;}#dvs-adv-search fieldset {border: none;float: left;padding: 10px;}#dvs-adv-search legend {color: #366EB8;float: left;font-weight: bold;height: 20px;}#dvs-adv-search .form-row {height: 22px;margin-bottom: 6px;}#dvs-adv-search label {float: left;height: 22px;overflow: hidden;width: 100px;font-size: 13px;}#dvs-adv-search select {float: left;}#dvs-adv-search .optionSetHolder {float: left;overflow: hidden;width: 220px;}#dvs-adv-search button {float: right;margin-top: 5px;}#dvs-adv-search a {float:left;margin-top:6px;color: #366EB8;font-size: 12px;text-decoration: none;}#dvs-adv-search a:hover {text-decoration: underline;}";}if(dvstCss=='small'){var css = css + "#dvs-adv-search {width: 320px;}#dvs-adv-search select {width: 200px;}#dvs-adv-search fieldset {width: 300px;}#dvs-adv-search .optionSetHolder {width: 200px;}";} else if (dvstCss=='narrow'){var css = css + "#dvs-adv-search {width: 230px;}#dvs-adv-search select {width: 210px;float: none;}#dvs-adv-search button {margin-right: 0px;}#dvs-adv-search fieldset {width: 210px;}#dvs-adv-search .optionSetHolder {width: 200px;}#dvs-adv-search label {float: none;}#dvs-adv-search .form-row {height: 35px}";} else if (dvstCss=='advanced'){var css = css + "#dvs-adv-search {width: 680px;}#dvs-adv-search select {width: 200px;}#dvs-adv-search button {margin-right: 20px;}";}AddStyleSheet();function AddStyleSheet() {  var styleTag = document.createElement('style');  styleTag.type = "text/css";  if (styleTag.styleSheet) { // IE only    if (navigator.appVersion.indexOf("MSIE 5") != -1) { // IE 5 crashes if we add a style tag to the DOM      document.write("<style type='text/css'>" + css + "</style>");    }    else {      styleTag.styleSheet.cssText = css;    }  } else if (navigator.appVersion.indexOf("MSIE 5") != -1) {    document.write("<style type='text/css'>" + css + "</style>");  }  else {    var textNode = document.createTextNode(css);    styleTag.appendChild(textNode);  }  GetStyleInsertPoint().appendChild(styleTag);}function GetStyleInsertPoint() {  var insertElement = document.getElementsByTagName("head");  if (!insertElement || insertElement.length < 1) {    insertElement = document.body;  }  else {    insertElement = insertElement[0];  }  return insertElement;}// -----------------------------------------------------------------------------------------// --- HTML// -----------------------------------------------------------------------------------------document.write("<div id='dvs-adv-search'>");document.write("<h2>FIND PATIENT STORIES</h2>");document.write("<p>Looking for <i>da Vinci</i> patient experience stories from people like you? ");document.write("Search through stories by location, medical condition, and more.</p>");// Titledocument.write("<fieldset>");document.write("<legend class='form-title'>Search by:</legend>");// Conditiondocument.write("<div class='form-row'>");document.write("  <label for='condition'>Condition:</label>");document.write("  <select name='condition' id='conditionsComboBox' onchange='javascript:OnConditionChange();'></select>");document.write("</div>");// Proceduredocument.write("<div class='form-row'>");document.write("  <label for='procedure'>Procedure:</label>");document.write("  <select name='procedure' id='proceduresComboBox' onchange='javascript:OnProcedureChange();'></select>");document.write("</div>");// Countrydocument.write("<div class='form-row'>");document.write("  <label for='country'>Country:</label>");document.write("  <select name='country' id='countriesComboBox' onchange='javascript:OnCountriesChange();'></select>");document.write("</div>");// Statedocument.write("<div class='form-row'>");document.write("  <label for='state'>State:</label>");document.write("  <select name='state' id='statesComboBox' onchange='javascript:OnStateChange();'></select>");document.write("</div>");if(dvstAdvancedView==true) { // Advanced View Checkdocument.write("</fieldset>");// Titledocument.write("<fieldset>");document.write("<legend class='form-title'>Additional Search Options:</legend>");// Genderdocument.write("<div class='form-row'>");document.write("  <label for='gender'>Gender:</label>");document.write("  <span class='optionSetHolder'>");document.write("    <input class='checkbox' value='male' name='gender' id='maleRadio' type='radio' onchange='javascript:OnGenderChange();'><span class='optionLabel'>Male</span>");document.write("    <input class='checkbox' value='female' name='gender' id='femaleRadio' type='radio' onchange='javascript:OnGenderChange();'><span class='optionLabel'>Female</span>");document.write("  </span>");document.write("</div>");// Age Rangedocument.write("<div class='form-row'>");document.write("  <label for='agerange'>Age Range:</label>");document.write("  <select name='agerange' id='ageRangesComboBox' onchange='javascript:OnAgeRangesChange();'></select>");document.write("</div>");// Occupationdocument.write("<div class='form-row'>");document.write("  <label for='occupation'>Occupation:</label>");document.write("  <select name='occupation' id='occupationsComboBox' onchange='javascript:OnOccupationsChange();'></select>");document.write("</div>");// Hospitaldocument.write("<div class='form-row'>");document.write("  <label for='hospital'>Hospital:</label>");document.write("  <select name='hospital' id='hospitalsComboBox' onchange='javascript:OnHospitalsChange();'></select>");document.write("</div>");} else {// Advanced Search Linkdocument.write("<a href='http://www.davincistories.com:80/#patient-stories'");if(dvstNewWindow==true){document.write("target='_blank'");}document.write(">Advanced Search</a>");}document.write("<button class='rightSubmitButton' onclick='GetPatientStories(); return false;'>Search Stories</button>");document.write("</fieldset>");document.write("</div>");// -----------------------------------------------------------------------------------------// --- Button event handler// -----------------------------------------------------------------------------------------function GetPatientStories(){  var args = "?start=0";  var selected = null;  var cbox = null;  // Surgery  if (dvstCondition != 'all') {    args += "&surgery=" + dvstCondition;  }  // Conditions    cbox = document.getElementById('conditionsComboBox');  if (cbox.selectedIndex > 0) {    selected = cbox.options[cbox.selectedIndex].text;    args += "&condition=" + selected;  }  // Procedure  cbox = document.getElementById('proceduresComboBox');  if (cbox.selectedIndex > 0) {    selected = cbox.options[cbox.selectedIndex].text;    args += "&procedure=" + selected;  }  // Country  cbox = document.getElementById('countriesComboBox');  if (cbox.selectedIndex > 0) {    selected = cbox.options[cbox.selectedIndex].text;    args += "&country=" + selected;  }  // State  cbox = document.getElementById('statesComboBox');  if (cbox.selectedIndex > 0) {    selected = cbox.options[cbox.selectedIndex].text;    args += "&state=" + selected;  }if(dvstAdvancedView==true){  // Gender  var maleRadio = document.getElementById('maleRadio');  var femaleRadio = document.getElementById('femaleRadio');  if ( maleRadio.checked && IsGenderEnabled() == true) {args += "&gender=male";  }  else if (femaleRadio.checked && IsGenderEnabled() == true) {args += "&gender=female";  }  // Age Range  cbox = document.getElementById('ageRangesComboBox');  if (cbox.selectedIndex > 0) {selected = cbox.options[cbox.selectedIndex].value;args += "&agerange=" + selected;  }  // Occupation  cbox = document.getElementById('occupationsComboBox');  if (cbox.selectedIndex > 0) {selected = cbox.options[cbox.selectedIndex].text;args += "&occupation=" + selected;  }  // Hospital  cbox = document.getElementById('hospitalsComboBox');  if (cbox.selectedIndex > 0) {selected = cbox.options[cbox.selectedIndex].value;args += "&hospital=" + selected;  }}  var path = 'http://www.davincistories.com:80/search-stories/search-stories-result.html' + args;  if (dvstNewWindow==false) {    window.location = path;  }  else {    window.open(path);  }}// -----------------------------------------------------------------------------------------// --- Patient Stories// -----------------------------------------------------------------------------------------var patientStories = { "stories" : [    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Washington",      "gender": "",      "age": "0",      "occupation": "Healthcare",      "hospitalId": "6377"    },    { "condition": "Cervical Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Nevada",      "gender": "Female",      "age": "37",      "occupation": "Other",      "hospitalId": "6497"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "43",      "occupation": "Other",      "hospitalId": "62115"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Gynecology",      "country": "United States",      "state": "Minnesota",      "gender": "Female",      "age": "35",      "occupation": "",      "hospitalId": "42770"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "45",      "occupation": "Nursing",      "hospitalId": "6683"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "Georgia",      "gender": "Male",      "age": "0",      "occupation": "Other",      "hospitalId": "43072"    },    { "condition": "Cervical Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "36",      "occupation": "Other",      "hospitalId": "6926"    },    { "condition": "Cervical Cancer",      "procedure": "",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "37",      "occupation": "Sales",      "hospitalId": "7124"    },    { "condition": "Other Cardiac Condition",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "67",      "occupation": "Sales",      "hospitalId": "6770"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "0",      "occupation": "Healthcare",      "hospitalId": "6875"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "Texas",      "gender": "Male",      "age": "52",      "occupation": "",      "hospitalId": "6470"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Virginia",      "gender": "Male",      "age": "61",      "occupation": "Trades",      "hospitalId": "6851"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "Ohio",      "gender": "Male",      "age": "37",      "occupation": "Technology",      "hospitalId": "6881"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "56",      "occupation": "Sales",      "hospitalId": "6926"    },    { "condition": "Other Cardiac Condition",      "procedure": "Cardiac revascularization",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "59",      "occupation": "Healthcare",      "hospitalId": "6383"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "South Carolina",      "gender": "Female",      "age": "45",      "occupation": "Other",      "hospitalId": "6392"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "63",      "occupation": "",      "hospitalId": "6377"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Pennsylvania",      "gender": "",      "age": "56",      "occupation": "Healthcare",      "hospitalId": "72571"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "0",      "occupation": "Gov't/Public Service",      "hospitalId": "6665"    },    { "condition": "Atrial Septal Defect",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "Georgia",      "gender": "Female",      "age": "0",      "occupation": "Education",      "hospitalId": "43072"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "",      "gender": "Female",      "age": "0",      "occupation": "",      "hospitalId": "6497"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "",      "gender": "Female",      "age": "50",      "occupation": "Healthcare",      "hospitalId": "6926"    },    { "condition": "Other Cardiac Condition",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "Georgia",      "gender": "Female",      "age": "30",      "occupation": "Other",      "hospitalId": "43072"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Washington",      "gender": "Male",      "age": "59",      "occupation": "Gov't/Public Service",      "hospitalId": "6740"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "61",      "occupation": "Education",      "hospitalId": "62115"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "36",      "occupation": "Healthcare",      "hospitalId": "6746"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "61",      "occupation": "Retired",      "hospitalId": "6998"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "53",      "occupation": "Other",      "hospitalId": "6998"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "42",      "occupation": "Healthcare",      "hospitalId": "6767"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New York",      "gender": "Male",      "age": "56",      "occupation": "Other",      "hospitalId": "52946"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New York",      "gender": "Male",      "age": "49",      "occupation": "Other",      "hospitalId": "65795"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Texas",      "gender": "Male",      "age": "63",      "occupation": "Retired",      "hospitalId": "6917"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Oklahoma",      "gender": "Male",      "age": "64",      "occupation": "Healthcare",      "hospitalId": "6407"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "47",      "occupation": "Nursing",      "hospitalId": "6746"    },    { "condition": "Uterine Prolapse",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "62",      "occupation": "Healthcare",      "hospitalId": "7055"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "62",      "occupation": "Education",      "hospitalId": "62115"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "60",      "occupation": "Gov't/Public Service",      "hospitalId": "61978"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Texas",      "gender": "Male",      "age": "62",      "occupation": "Marketing",      "hospitalId": "0"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "55",      "occupation": "Healthcare",      "hospitalId": "6926"    },    { "condition": "Kidney Cancer",      "procedure": "Partial Nephrectomy",      "country": "United States",      "state": "Illinois",      "gender": "Male",      "age": "48",      "occupation": "Other",      "hospitalId": "53471"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Hawaii",      "gender": "Female",      "age": "41",      "occupation": "Other",      "hospitalId": "42752"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Hawaii",      "gender": "Female",      "age": "51",      "occupation": "Trades",      "hospitalId": "42752"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Massachusetts",      "gender": "Male",      "age": "52",      "occupation": "Other",      "hospitalId": "37857"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "49",      "occupation": "Gov't/Public Service",      "hospitalId": "53441"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Illinois",      "gender": "Male",      "age": "59",      "occupation": "Retired",      "hospitalId": "54601"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Hawaii",      "gender": "Female",      "age": "48",      "occupation": "Healthcare",      "hospitalId": "42752"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Oregon",      "gender": "Female",      "age": "50",      "occupation": "Gov't/Public Service",      "hospitalId": "11570"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "60",      "occupation": "Gov't/Public Service",      "hospitalId": "37866"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Delaware",      "gender": "Female",      "age": "61",      "occupation": "Admin/Support",      "hospitalId": "37846"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "60",      "occupation": "Sales",      "hospitalId": "37866"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "52",      "occupation": "Admin/Support",      "hospitalId": "42764"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Male",      "age": "60",      "occupation": "Healthcare",      "hospitalId": "43588"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "40",      "occupation": "Other",      "hospitalId": "42764"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "55",      "occupation": "Other",      "hospitalId": "68661"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "56",      "occupation": "Admin/Support",      "hospitalId": "55312"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "33",      "occupation": "Gov't/Public Service",      "hospitalId": "11672"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Georgia",      "gender": "Female",      "age": "51",      "occupation": "Legal",      "hospitalId": "43837"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "70",      "occupation": "Other",      "hospitalId": "6482"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "50",      "occupation": "Education",      "hospitalId": "65892"    },    { "condition": "Prostate Cancer",      "procedure": "",      "country": "United States",      "state": "New Hampshire",      "gender": "Male",      "age": "50",      "occupation": "Trades",      "hospitalId": "69055"    },    { "condition": "Other Cardiac Condition",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "40",      "occupation": "Other",      "hospitalId": "6356"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "48",      "occupation": "Education",      "hospitalId": "62102"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Tennessee",      "gender": "Female",      "age": "37",      "occupation": "Nursing",      "hospitalId": "6500"    },    { "condition": "Prostate Cancer",      "procedure": "",      "country": "United States",      "state": "Florida",      "gender": "Male",      "age": "60",      "occupation": "Retired",      "hospitalId": "6665"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "32",      "occupation": "Marketing",      "hospitalId": "6692"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "44",      "occupation": "Nursing",      "hospitalId": "65892"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "54",      "occupation": "Admin/Support",      "hospitalId": "42764"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "44",      "occupation": "Sales",      "hospitalId": "11600"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New Mexico",      "gender": "Male",      "age": "58",      "occupation": "Transportation",      "hospitalId": "55321"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "44",      "occupation": "",      "hospitalId": "11529"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Iowa",      "gender": "Female",      "age": "40",      "occupation": "Admin/Support",      "hospitalId": "43828"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Male",      "age": "55",      "occupation": "Marketing",      "hospitalId": "7064"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Oregon",      "gender": "Male",      "age": "67",      "occupation": "Technology",      "hospitalId": "6416"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "31",      "occupation": "Admin/Support",      "hospitalId": "53501"    },    { "condition": "Cervical Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "37",      "occupation": "Sales",      "hospitalId": "74123"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "33",      "occupation": "Trades",      "hospitalId": "65892"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Illinois",      "gender": "Male",      "age": "65",      "occupation": "Admin/Support",      "hospitalId": "54601"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Nebraska",      "gender": "Female",      "age": "48",      "occupation": "Healthcare",      "hospitalId": "6839"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "46",      "occupation": "Other",      "hospitalId": "11529"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Nebraska",      "gender": "Female",      "age": "44",      "occupation": "Education",      "hospitalId": "6443"    },    { "condition": "Uterine Prolapse",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "Nebraska",      "gender": "Female",      "age": "30",      "occupation": "Technology",      "hospitalId": "6443"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Oklahoma",      "gender": "Female",      "age": "32",      "occupation": "Other",      "hospitalId": "58142"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Michigan",      "gender": "Male",      "age": "66",      "occupation": "Retired",      "hospitalId": "6341"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "65",      "occupation": "Retired",      "hospitalId": "61981"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "51",      "occupation": "Sales",      "hospitalId": "51930"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "46",      "occupation": "Healthcare",      "hospitalId": "51906"    },    { "condition": "Kidney Cancer",      "procedure": "Partial Nephrectomy",      "country": "United States",      "state": "Louisiana",      "gender": "Male",      "age": "33",      "occupation": "Nursing",      "hospitalId": "50920"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "65",      "occupation": "Retired",      "hospitalId": "43837"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "49",      "occupation": "Other",      "hospitalId": "65795"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "50",      "occupation": "Education",      "hospitalId": "11600"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Massachusetts",      "gender": "Male",      "age": "63",      "occupation": "Education",      "hospitalId": "37857"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Illinois",      "gender": "Male",      "age": "62",      "occupation": "Technology",      "hospitalId": "7250"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Illinois",      "gender": "Male",      "age": "66",      "occupation": "Retired",      "hospitalId": "7250"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Florida",      "gender": "Male",      "age": "69",      "occupation": "Retired",      "hospitalId": "6971"    },    { "condition": "Cervical Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "52",      "occupation": "Admin/Support",      "hospitalId": "6635"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "67",      "occupation": "Retired",      "hospitalId": "11603"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Florida",      "gender": "Male",      "age": "55",      "occupation": "Nursing",      "hospitalId": "6971"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "44",      "occupation": "Marketing",      "hospitalId": "37905"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Hampshire",      "gender": "Female",      "age": "43",      "occupation": "Healthcare",      "hospitalId": "6317"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Georgia",      "gender": "Female",      "age": "36",      "occupation": "Other",      "hospitalId": "55240"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Washington",      "gender": "Female",      "age": "51",      "occupation": "Retired",      "hospitalId": "62136"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Pennsylvania",      "gender": "Female",      "age": "46",      "occupation": "Admin/Support",      "hospitalId": "69416"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Washington",      "gender": "Female",      "age": "65",      "occupation": "Nursing",      "hospitalId": "7100"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United Kingdom",      "state": "",      "gender": "Male",      "age": "39",      "occupation": "Technology",      "hospitalId": "66042"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "58",      "occupation": "Healthcare",      "hospitalId": "6635"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Indiana",      "gender": "Female",      "age": "49",      "occupation": "Admin/Support",      "hospitalId": "65904"    },    { "condition": "Uterine Prolapse",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "Kentucky",      "gender": "Female",      "age": "43",      "occupation": "Other",      "hospitalId": "58127"    },    { "condition": "Coronary Artery Disease (CAD) / Angina",      "procedure": "Cardiac revascularization",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "66",      "occupation": "Other",      "hospitalId": "58184"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "44",      "occupation": "Education",      "hospitalId": "69434"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Hawaii",      "gender": "Female",      "age": "44",      "occupation": "Nursing",      "hospitalId": "42752"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Mississippi",      "gender": "Female",      "age": "35",      "occupation": "Healthcare",      "hospitalId": "53540"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "45",      "occupation": "Other",      "hospitalId": "58184"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United Kingdom",      "state": "",      "gender": "Male",      "age": "54",      "occupation": "Human Resources",      "hospitalId": "66042"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "47",      "occupation": "Healthcare",      "hospitalId": "53441"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "33",      "occupation": "Gov't/Public Service",      "hospitalId": "6692"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Louisiana",      "gender": "Female",      "age": "52",      "occupation": "Healthcare",      "hospitalId": "51918"    },    { "condition": "General Surgery",      "procedure": "",      "country": "United States",      "state": "New York",      "gender": "Male",      "age": "74",      "occupation": "Education",      "hospitalId": "6491"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "48",      "occupation": "Other",      "hospitalId": "51915"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "39",      "occupation": "",      "hospitalId": "71822"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "38",      "occupation": "Admin/Support",      "hospitalId": "43828"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "Maryland",      "gender": "Female",      "age": "32",      "occupation": "Healthcare",      "hospitalId": "41643"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "52",      "occupation": "Human Resources",      "hospitalId": "0"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Pennsylvania",      "gender": "Male",      "age": "59",      "occupation": "Retired",      "hospitalId": "41419"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "58",      "occupation": "Education",      "hospitalId": "11600"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Washington",      "gender": "Female",      "age": "41",      "occupation": "Healthcare",      "hospitalId": "7067"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "49",      "occupation": "",      "hospitalId": "42489"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "47",      "occupation": "",      "hospitalId": "42782"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Nebraska",      "gender": "Male",      "age": "53",      "occupation": "Gov't/Public Service",      "hospitalId": "6317"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "48",      "occupation": "Sales",      "hospitalId": "69401"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "46",      "occupation": "Healthcare",      "hospitalId": "62142"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Virginia",      "gender": "Female",      "age": "51",      "occupation": "Transportation",      "hospitalId": "6338"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "56",      "occupation": "Marketing",      "hospitalId": "6767"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "50",      "occupation": "Healthcare",      "hospitalId": "62142"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "42",      "occupation": "Other",      "hospitalId": "65892"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "52",      "occupation": "Legal",      "hospitalId": "6767"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Colorado",      "gender": "Male",      "age": "60",      "occupation": "Admin/Support",      "hospitalId": "6767"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "38",      "occupation": "Other",      "hospitalId": "6692"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New York",      "gender": "Male",      "age": "48",      "occupation": "Trades",      "hospitalId": "43069"    },    { "condition": "Kidney Cancer",      "procedure": "Nephrectomy",      "country": "United States",      "state": "Florida",      "gender": "Male",      "age": "51",      "occupation": "Transportation",      "hospitalId": "62400"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Nevada",      "gender": "Male",      "age": "70",      "occupation": "Retired",      "hospitalId": "71828"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Indiana",      "gender": "Male",      "age": "66",      "occupation": "Education",      "hospitalId": "55285"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Colorado",      "gender": "Male",      "age": "67",      "occupation": "",      "hospitalId": "6767"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "49",      "occupation": "Healthcare",      "hospitalId": "6692"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "64",      "occupation": "Other",      "hospitalId": "51900"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "43",      "occupation": "Other",      "hospitalId": "71822"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "37",      "occupation": "",      "hospitalId": "56164"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "60",      "occupation": "Retired",      "hospitalId": "6878"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "39",      "occupation": "",      "hospitalId": "71822"    },    { "condition": "Coronary Artery Disease (CAD) / Angina",      "procedure": "Cardiac revascularization",      "country": "United States",      "state": "Oregon",      "gender": "Male",      "age": "60",      "occupation": "Admin/Support",      "hospitalId": "54601"    },    { "condition": "Uterine Prolapse",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "66",      "occupation": "Healthcare",      "hospitalId": "11600"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Maryland",      "gender": "Female",      "age": "65",      "occupation": "Retired",      "hospitalId": "6347"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "41",      "occupation": "Legal",      "hospitalId": "6767"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "46",      "occupation": "Education",      "hospitalId": "6746"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Indiana",      "gender": "Female",      "age": "40",      "occupation": "Admin/Support",      "hospitalId": "53459"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "47",      "occupation": "Education",      "hospitalId": "65892"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "37",      "occupation": "Marketing",      "hospitalId": "51936"    },    { "condition": "Uterine Prolapse",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "65",      "occupation": "",      "hospitalId": "69329"    },    { "condition": "Cervical Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "43",      "occupation": "",      "hospitalId": "69329"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "49",      "occupation": "Technology",      "hospitalId": "57659"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "48",      "occupation": "Healthcare",      "hospitalId": "6701"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "52",      "occupation": "Admin/Support",      "hospitalId": "62142"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "38",      "occupation": "",      "hospitalId": "51906"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Tennessee",      "gender": "Female",      "age": "35",      "occupation": "Admin/Support",      "hospitalId": "77810"    },    { "condition": "Hyperthyroidism",      "procedure": "Thyroidectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "41",      "occupation": "",      "hospitalId": "42788"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "50",      "occupation": "",      "hospitalId": "6878"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "Montana",      "gender": "Male",      "age": "55",      "occupation": "Education",      "hospitalId": "6428"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "West Virginia",      "gender": "Female",      "age": "52",      "occupation": "Education",      "hospitalId": "53513"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "62",      "occupation": "Education",      "hospitalId": "6983"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Arizona",      "gender": "Female",      "age": "50",      "occupation": "Other",      "hospitalId": "54486"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "32",      "occupation": "Legal",      "hospitalId": "52152"    },    { "condition": "Coronary Artery Disease (CAD) / Angina",      "procedure": "Cardiac revascularization",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "73",      "occupation": "Technology",      "hospitalId": "43072"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Gynecology",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "42",      "occupation": "Automotive",      "hospitalId": "6692"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Male",      "age": "67",      "occupation": "Retired",      "hospitalId": "42489"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "49",      "occupation": "Education",      "hospitalId": "6311"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Ohio",      "gender": "Female",      "age": "47",      "occupation": "Technology",      "hospitalId": "37905"    },    { "condition": "Bladder Cancer",      "procedure": "Cystectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "53",      "occupation": "Education",      "hospitalId": "53519"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "44",      "occupation": "Sales",      "hospitalId": "71822"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Massachusetts",      "gender": "Female",      "age": "49",      "occupation": "Nursing",      "hospitalId": "7094"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Missouri",      "gender": "Female",      "age": "47",      "occupation": "Nursing",      "hospitalId": "65760"    },    { "condition": "Cervical Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "45",      "occupation": "Legal",      "hospitalId": "42743"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "44",      "occupation": "Admin/Support",      "hospitalId": "51900"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "56",      "occupation": "Other",      "hospitalId": "65907"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Georgia",      "gender": "Female",      "age": "50",      "occupation": "Marketing",      "hospitalId": "7133"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "Turkey",      "state": "",      "gender": "Male",      "age": "60",      "occupation": "Retired",      "hospitalId": "59282"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "62",      "occupation": "Retired",      "hospitalId": "11529"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Colorado",      "gender": "Female",      "age": "47",      "occupation": "Education",      "hospitalId": "42733"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "49",      "occupation": "Other",      "hospitalId": "42743"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "47",      "occupation": "Human Resources",      "hospitalId": "7013"    },    { "condition": "Uterine Prolapse",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "51",      "occupation": "Admin/Support",      "hospitalId": "42740"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Massachusetts",      "gender": "Male",      "age": "62",      "occupation": "Education",      "hospitalId": "82945"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Illinois",      "gender": "Female",      "age": "45",      "occupation": "Healthcare",      "hospitalId": "55249"    },    { "condition": "Other Cardiac Condition",      "procedure": "",      "country": "United States",      "state": "Missouri",      "gender": "Female",      "age": "22",      "occupation": "Marketing",      "hospitalId": "43324"    },    { "condition": "Obesity",      "procedure": "Gastric bypass",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "36",      "occupation": "Other",      "hospitalId": "51944"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Washington",      "gender": "Male",      "age": "51",      "occupation": "Education",      "hospitalId": "6452"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Hawaii",      "gender": "Female",      "age": "42",      "occupation": "Other",      "hospitalId": "42752"    },    { "condition": "Endometriosis",      "procedure": "",      "country": "United States",      "state": "Colorado",      "gender": "Female",      "age": "42",      "occupation": "Sales",      "hospitalId": "58102"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United Kingdom",      "state": "",      "gender": "Male",      "age": "55",      "occupation": "Retired",      "hospitalId": "66042"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "36",      "occupation": "Legal",      "hospitalId": "65810"    },    { "condition": "Other Cardiac Condition",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "53",      "occupation": "Marketing",      "hospitalId": "6875"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Tennessee",      "gender": "Female",      "age": "41",      "occupation": "Education",      "hospitalId": "77810"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Colorado",      "gender": "Female",      "age": "58",      "occupation": "Retired",      "hospitalId": "58102"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Arizona",      "gender": "Female",      "age": "40",      "occupation": "Retail",      "hospitalId": "81941"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "39",      "occupation": "Healthcare",      "hospitalId": "58181"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "42",      "occupation": "Gov't/Public Service",      "hospitalId": "69389"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Mississippi",      "gender": "Female",      "age": "36",      "occupation": "Admin/Support",      "hospitalId": "53453"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "60",      "occupation": "Admin/Support",      "hospitalId": "83793"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "35",      "occupation": "",      "hospitalId": "62142"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "57",      "occupation": "Education",      "hospitalId": "6875"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Nevada",      "gender": "Male",      "age": "62",      "occupation": "Retired",      "hospitalId": "55276"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United Kingdom",      "state": "",      "gender": "Male",      "age": "51",      "occupation": "",      "hospitalId": "66042"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Washington",      "gender": "Female",      "age": "54",      "occupation": "Technology",      "hospitalId": "7100"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "32",      "occupation": "Students/Recent Grads",      "hospitalId": "69329"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "41",      "occupation": "Other",      "hospitalId": "51936"    },    { "condition": "Kidney Cancer",      "procedure": "Partial Nephrectomy",      "country": "United States",      "state": "Nevada",      "gender": "Male",      "age": "66",      "occupation": "Education",      "hospitalId": "71828"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Tennessee",      "gender": "Female",      "age": "46",      "occupation": "Nursing",      "hospitalId": "11618"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Washington",      "gender": "Female",      "age": "55",      "occupation": "Healthcare",      "hospitalId": "7100"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Indiana",      "gender": "Female",      "age": "28",      "occupation": "Healthcare",      "hospitalId": "69350"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "42",      "occupation": "Education",      "hospitalId": "58099"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New York",      "gender": "Male",      "age": "54",      "occupation": "Technology",      "hospitalId": "6488"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "47",      "occupation": "Other",      "hospitalId": "6767"    },    { "condition": "",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "65",      "occupation": "Retired",      "hospitalId": "69326"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "46",      "occupation": "Restaurant & Hospitality",      "hospitalId": "65770"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "49",      "occupation": "Human Resources",      "hospitalId": "65892"    },    { "condition": "Endometriosis",      "procedure": "",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "35",      "occupation": "",      "hospitalId": "11603"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Michigan",      "gender": "Male",      "age": "59",      "occupation": "Other",      "hospitalId": "6938"    },    { "condition": "Coronary Artery Disease (CAD) / Angina",      "procedure": "Cardiac revascularization",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "66",      "occupation": "Retired",      "hospitalId": "41646"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Missouri",      "gender": "Male",      "age": "75",      "occupation": "",      "hospitalId": "41628"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "47",      "occupation": "Human Resources",      "hospitalId": "71822"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Michigan",      "gender": "Female",      "age": "50",      "occupation": "Education",      "hospitalId": "11603"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Male",      "age": "68",      "occupation": "Retired",      "hospitalId": "6335"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United Kingdom",      "state": "",      "gender": "Male",      "age": "63",      "occupation": "Technology",      "hospitalId": "66042"    },    { "condition": "Cervical Cancer",      "procedure": "",      "country": "United States",      "state": "New Hampshire",      "gender": "Female",      "age": "49",      "occupation": "Other",      "hospitalId": "6317"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "46",      "occupation": "Education",      "hospitalId": "69404"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New Hampshire",      "gender": "Male",      "age": "66",      "occupation": "Trades",      "hospitalId": "6317"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "35",      "occupation": "Other",      "hospitalId": "51900"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "52",      "occupation": "Sales",      "hospitalId": "51959"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Georgia",      "gender": "Female",      "age": "56",      "occupation": "Technology",      "hospitalId": "69341"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Oregon",      "gender": "Female",      "age": "38",      "occupation": "Nursing",      "hospitalId": "11570"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "26",      "occupation": "Gov't/Public Service",      "hospitalId": "51936"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "37",      "occupation": "Gov't/Public Service",      "hospitalId": "6431"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "52",      "occupation": "Technology",      "hospitalId": "7124"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Male",      "age": "65",      "occupation": "Sales",      "hospitalId": "37875"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "North Carolina",      "gender": "Female",      "age": "42",      "occupation": "Other",      "hospitalId": "51906"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "43",      "occupation": "Other",      "hospitalId": "71822"    },    { "condition": "Kidney Cancer",      "procedure": "Partial Nephrectomy",      "country": "United States",      "state": "Washington",      "gender": "Female",      "age": "54",      "occupation": "Marketing",      "hospitalId": "55226"    },    { "condition": "Ovarian Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Colorado",      "gender": "Female",      "age": "53",      "occupation": "Retired",      "hospitalId": "58102"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Tennessee",      "gender": "Female",      "age": "44",      "occupation": "Other",      "hospitalId": "6500"    },    { "condition": "Atrial Septal Defect",      "procedure": "Atrial Septal Defect Closure",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "42",      "occupation": "Other",      "hospitalId": "53441"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "57",      "occupation": "Education",      "hospitalId": "85489"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "54",      "occupation": "Gov't/Public Service",      "hospitalId": "85489"    },    { "condition": "Uterine Prolapse",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "56",      "occupation": "Other",      "hospitalId": "41637"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "45",      "occupation": "Admin/Support",      "hospitalId": "85447"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "48",      "occupation": "Nursing",      "hospitalId": "51933"    },    { "condition": "Uterine Prolapse",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "57",      "occupation": "",      "hospitalId": "69329"    },    { "condition": "Gastroesophageal Reflux Disease (GERD)",      "procedure": "Nissen fundoplication",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "49",      "occupation": "Technology",      "hospitalId": "61978"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "49",      "occupation": "",      "hospitalId": "69329"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Arizona",      "gender": "Female",      "age": "41",      "occupation": "Gov't/Public Service",      "hospitalId": "51423"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Michigan",      "gender": "Male",      "age": "61",      "occupation": "Human Resources",      "hospitalId": "58133"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "42",      "occupation": "",      "hospitalId": "85524"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "46",      "occupation": "Legal",      "hospitalId": "85199"    },    { "condition": "Other Gynecologic Condition",      "procedure": "",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "46",      "occupation": "Sales",      "hospitalId": "84620"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "44",      "occupation": "Gov't/Public Service",      "hospitalId": "71822"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Nebraska",      "gender": "Female",      "age": "47",      "occupation": "Nursing",      "hospitalId": "51953"    },    { "condition": "Kidney Cancer",      "procedure": "Partial Nephrectomy",      "country": "United Kingdom",      "state": "",      "gender": "Female",      "age": "47",      "occupation": "Education",      "hospitalId": "66042"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "England",      "state": "",      "gender": "Male",      "age": "58",      "occupation": "Technology",      "hospitalId": "66042"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Kentucky",      "gender": "Female",      "age": "44",      "occupation": "Admin/Support",      "hospitalId": "6692"    },    { "condition": "",      "procedure": "Thyroidectomy",      "country": "United States",      "state": "Arizona",      "gender": "Female",      "age": "36",      "occupation": "Restaurant & Hospitality",      "hospitalId": "65868"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "44",      "occupation": "Sales",      "hospitalId": "69329"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "California",      "gender": "Male",      "age": "52",      "occupation": "Technology",      "hospitalId": "6770"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United Kingdom",      "state": "",      "gender": "Male",      "age": "62",      "occupation": "Trades",      "hospitalId": "66042"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "52",      "occupation": "",      "hospitalId": "43324"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "56",      "occupation": "",      "hospitalId": "51900"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "51",      "occupation": "Sales",      "hospitalId": "69338"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "60",      "occupation": "Sales",      "hospitalId": "51936"    },    { "condition": "Cervical Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "50",      "occupation": "Admin/Support",      "hospitalId": "43372"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "53",      "occupation": "Education",      "hospitalId": "84620"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "44",      "occupation": "Other",      "hospitalId": "6482"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "39",      "occupation": "Healthcare",      "hospitalId": "51900"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "37",      "occupation": "Education",      "hospitalId": "84620"    },    { "condition": "Thyroid Cancer",      "procedure": "Thyroidectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "52",      "occupation": "Nursing",      "hospitalId": "42788"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "37",      "occupation": "Education",      "hospitalId": "71822"    },    { "condition": "Uterine Prolapse",      "procedure": "Sacrocolpopexy",      "country": "United States",      "state": "Nebraska",      "gender": "Female",      "age": "66",      "occupation": "Admin/Support",      "hospitalId": "6443"    },    { "condition": "Precancerous Growth",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "49",      "occupation": "Other",      "hospitalId": "71822"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Wisconsin",      "gender": "Female",      "age": "45",      "occupation": "Education",      "hospitalId": "62142"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "43",      "occupation": "Sales",      "hospitalId": "69389"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "51",      "occupation": "Gov't/Public Service",      "hospitalId": "51936"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "41",      "occupation": "Education",      "hospitalId": "51900"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "37",      "occupation": "Healthcare",      "hospitalId": "51900"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "53",      "occupation": "Retired",      "hospitalId": "65892"    },    { "condition": "Kidney Cancer",      "procedure": "Partial Nephrectomy",      "country": "United States",      "state": "Indiana",      "gender": "Male",      "age": "67",      "occupation": "Retired",      "hospitalId": "7181"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Mississippi",      "gender": "Female",      "age": "51",      "occupation": "Other",      "hospitalId": "65798"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Iowa",      "gender": "Female",      "age": "49",      "occupation": "",      "hospitalId": "58160"    },    { "condition": "Other Gynecologic Condition",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Illinois",      "gender": "Female",      "age": "50",      "occupation": "Other",      "hospitalId": "42755"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "46",      "occupation": "Healthcare",      "hospitalId": "65834"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "47",      "occupation": "Other",      "hospitalId": "84620"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Male",      "age": "65",      "occupation": "Gov't/Public Service",      "hospitalId": "37875"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Connecticut",      "gender": "Female",      "age": "47",      "occupation": "Healthcare",      "hospitalId": "43324"    },    { "condition": "Prostate Cancer",      "procedure": "Radical prostatectomy",      "country": "United States",      "state": "Nevada",      "gender": "Male",      "age": "64",      "occupation": "Retired",      "hospitalId": "71828"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "48",      "occupation": "Admin/Support",      "hospitalId": "71822"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "New Jersey",      "gender": "Female",      "age": "47",      "occupation": "Military",      "hospitalId": "85435"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "California",      "gender": "Female",      "age": "45",      "occupation": "Healthcare",      "hospitalId": "69311"    },    { "condition": "Endometrial (Uterine) Cancer",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "43",      "occupation": "",      "hospitalId": "7124"    },    { "condition": "Heart Murmur / Irregular Heartbeat",      "procedure": "Mitral Valve Repair",      "country": "United States",      "state": "West Virginia",      "gender": "Male",      "age": "49",      "occupation": "Marketing",      "hospitalId": "6320"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Illinois",      "gender": "Female",      "age": "42",      "occupation": "Education",      "hospitalId": "42755"    },    { "condition": "Uterine Prolapse",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Oklahoma",      "gender": "Female",      "age": "65",      "occupation": "Retired",      "hospitalId": "85411"    },    { "condition": "Uterine Fibroids",      "procedure": "Myomectomy",      "country": "United States",      "state": "New York",      "gender": "Female",      "age": "34",      "occupation": "Education",      "hospitalId": "65892"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Washington",      "gender": "Female",      "age": "50",      "occupation": "Admin/Support",      "hospitalId": "7100"    },    { "condition": "Excessive Menstrual Bleeding",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Texas",      "gender": "Female",      "age": "40",      "occupation": "Technology",      "hospitalId": "51936"    },    { "condition": "Endometriosis",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Florida",      "gender": "Female",      "age": "37",      "occupation": "Gov't/Public Service",      "hospitalId": "42743"    },    { "condition": "Uterine Fibroids",      "procedure": "Hysterectomy",      "country": "United States",      "state": "Delaware",      "gender": "Female",      "age": "42",      "occupation": "Other",      "hospitalId": "0"    }] };// -----------------------------------------------------------------------------------------// --- Drop down list values (JSON array's from Switch)// -----------------------------------------------------------------------------------------var conditionList = { "conditions" : [   { "label": "Cardiothoracic:",    "options" : [          { "text": "Atrial Septal Defect", "value" : "Atrial Septal Defect" }          , { "text": "Coronary Artery Disease (CAD) / Angina", "value" : "Coronary Artery Disease (CAD) / Angina" }          , { "text": "Heart Murmur / Irregular Heartbeat", "value" : "Heart Murmur / Irregular Heartbeat" }          , { "text": "Other Cardiac Condition", "value" : "Other Cardiac Condition" }    ] },  { "label": "General Surgery:",    "options" : [          { "text": "Achalasia", "value" : "Achalasia" }          , { "text": "Cancer of the Adrenal Gland", "value" : "Cancer of the Adrenal Gland" }          , { "text": "Cancer of the Spleen", "value" : "Cancer of the Spleen" }          , { "text": "Colon Cancer", "value" : "Colon Cancer" }          , { "text": "Crohn's Disease", "value" : "Crohn's Disease" }          , { "text": "Diverticular disease", "value" : "Diverticular disease" }          , { "text": "Gall Stones / Cholecystitis", "value" : "Gall Stones / Cholecystitis" }          , { "text": "Gallbladder Cancer", "value" : "Gallbladder Cancer" }          , { "text": "Gastroesophageal Reflux Disease (GERD)", "value" : "Gastroesophageal Reflux Disease (GERD)" }          , { "text": "Inflammatory Bowel Disease", "value" : "Inflammatory Bowel Disease" }          , { "text": "Kidney Disease (benign)", "value" : "Kidney Disease (benign)" }          , { "text": "Obesity", "value" : "Obesity" }          , { "text": "Stomach Cancer", "value" : "Stomach Cancer" }    ] },  { "label": "Gynecology:",    "options" : [          { "text": "Cervical Cancer", "value" : "Cervical Cancer" }          , { "text": "Endometrial (Uterine) Cancer", "value" : "Endometrial (Uterine) Cancer" }          , { "text": "Endometriosis", "value" : "Endometriosis" }          , { "text": "Excessive Menstrual Bleeding", "value" : "Excessive Menstrual Bleeding" }          , { "text": "Ovarian Cancer", "value" : "Ovarian Cancer" }          , { "text": "Precancerous Growth", "value" : "Precancerous Growth" }          , { "text": "Uterine Fibroids", "value" : "Uterine Fibroids" }          , { "text": "Uterine Prolapse", "value" : "Uterine Prolapse" }          , { "text": "Other Gynecologic Condition", "value" : "Other Gynecologic Condition" }          , { "text": "Tubal Reanastomosis", "value" : "Tubal Reanastomosis" }          , { "text": "Tubal Ligation", "value" : "Tubal Ligation" }    ] },  { "label": "Urology:",    "options" : [          { "text": "Bladder Cancer", "value" : "Bladder Cancer" }          , { "text": "Kidney Cancer", "value" : "Kidney Cancer" }          , { "text": "Prostate Cancer", "value" : "Prostate Cancer" }          , { "text": "Urinary Obstruction", "value" : "Urinary Obstruction" }          , { "text": "Other Urology Condition", "value" : "Other Urology Condition" }    ] },  { "label": "Head and Neck:",    "options" : [          { "text": "Hyperthyroidism", "value" : "Hyperthyroidism" }          , { "text": "Hypothyroidism", "value" : "Hypothyroidism" }          , { "text": "Thyroid Cancer", "value" : "Thyroid Cancer" }    ] }] }; var procedureList = { "procedures" : [    { "label" : "Cardiothoracic:",    "options" : [          { "text": "Atrial Septal Defect Closure", "value" : "Atrial Septal Defect Closure" }          , { "text": "Cardiac revascularization", "value" : "Cardiac revascularization" }          , { "text": "Mitral Valve Repair", "value" : "Mitral Valve Repair" }          , { "text": "Lobectomy", "value" : "Lobectomy" }    ] },    { "label" : "General Surgery:",    "options" : [          { "text": "Adrenalectomy", "value" : "Adrenalectomy" }          , { "text": "Bowel resection", "value" : "Bowel resection" }          , { "text": "Cholecystectomy", "value" : "Cholecystectomy" }          , { "text": "Gastrectomy", "value" : "Gastrectomy" }          , { "text": "Gastric bypass", "value" : "Gastric bypass" }          , { "text": "Heller myotomy", "value" : "Heller myotomy" }          , { "text": "Nissen fundoplication", "value" : "Nissen fundoplication" }          , { "text": "Splenectomy", "value" : "Splenectomy" }    ] },    { "label" : "Gynecology:",    "options" : [          { "text": "Hysterectomy", "value" : "Hysterectomy" }          , { "text": "Myomectomy", "value" : "Myomectomy" }          , { "text": "Sacrocolpopexy", "value" : "Sacrocolpopexy" }          , { "text": "Tubal Reanamostosis", "value" : "Tubal Reanamostosis" }    ] },    { "label" : "Urology:",    "options" : [          { "text": "Donor nephrectomy", "value" : "Donor nephrectomy" }          , { "text": "Cystectomy", "value" : "Cystectomy" }          , { "text": "Nephrectomy", "value" : "Nephrectomy" }          , { "text": "Pyeloplasty", "value" : "Pyeloplasty" }          , { "text": "Radical prostatectomy", "value" : "Radical prostatectomy" }          , { "text": "Ureteral reimplantation", "value" : "Ureteral reimplantation" }          , { "text": "Partial Nephrectomy", "value" : "Partial Nephrectomy" }    ] },    { "label" : "Head and Neck:",    "options" : [          { "text": "Thyroidectomy", "value" : "Thyroidectomy" }    ] }] }; var ageRangeList = { "ageranges" : [    { "text" : "20 and under", "value" : "1,20" },    { "text" : "21 - 30", "value" : "21,30" },    { "text" : "31 - 40", "value" : "31,40" },    { "text" : "41 - 50", "value" : "41,50" },    { "text" : "51 - 60", "value" : "51,60" },    { "text" : "61 - 70", "value" : "61,70" },    { "text" : "over 70", "value" : "71,200" }] };var countryList = { "countries" : [    { "text" : "Afghanistan", "value" : "Afghanistan" },    { "text" : "Albania", "value" : "Albania" },    { "text" : "Algeria", "value" : "Algeria" },    { "text" : "American Samoa", "value" : "American Samoa" },    { "text" : "Andorra", "value" : "Andorra" },    { "text" : "Angola", "value" : "Angola" },    { "text" : "Anguilla", "value" : "Anguilla" },    { "text" : "Antarctica", "value" : "Antarctica" },    { "text" : "Antigua and Barbuda", "value" : "Antigua and Barbuda" },    { "text" : "Argentina", "value" : "Argentina" },    { "text" : "Armenia", "value" : "Armenia" },    { "text" : "Aruba", "value" : "Aruba" },    { "text" : "Australia", "value" : "Australia" },    { "text" : "Austria", "value" : "Austria" },    { "text" : "Azerbaijan", "value" : "Azerbaijan" },    { "text" : "Bahamas", "value" : "Bahamas" },    { "text" : "Bahrain", "value" : "Bahrain" },    { "text" : "Bangladesh", "value" : "Bangladesh" },    { "text" : "Barbados", "value" : "Barbados" },    { "text" : "Belarus", "value" : "Belarus" },    { "text" : "Belgium", "value" : "Belgium" },    { "text" : "Belize", "value" : "Belize" },    { "text" : "Benin", "value" : "Benin" },    { "text" : "Bermuda", "value" : "Bermuda" },    { "text" : "Bhutan", "value" : "Bhutan" },    { "text" : "Bolivia", "value" : "Bolivia" },    { "text" : "Bosnia and Herzegovina", "value" : "Bosnia and Herzegovina" },    { "text" : "Botswana", "value" : "Botswana" },    { "text" : "Bouvet Island", "value" : "Bouvet Island" },    { "text" : "Brazil", "value" : "Brazil" },    { "text" : "Brunei Darussalam", "value" : "Brunei Darussalam" },    { "text" : "Bulgaria", "value" : "Bulgaria" },    { "text" : "Burkina Faso", "value" : "Burkina Faso" },    { "text" : "Burundi", "value" : "Burundi" },    { "text" : "Cambodia", "value" : "Cambodia" },    { "text" : "Cameroon", "value" : "Cameroon" },    { "text" : "Canada", "value" : "Canada" },    { "text" : "Cape Verde", "value" : "Cape Verde" },    { "text" : "Cayman Islands", "value" : "Cayman Islands" },    { "text" : "Central African Republic", "value" : "Central African Republic" },    { "text" : "Chad", "value" : "Chad" },    { "text" : "Chile", "value" : "Chile" },    { "text" : "China", "value" : "China" },    { "text" : "Christmas Island", "value" : "Christmas Island" },    { "text" : "Cocos (Keeling) Islands", "value" : "Cocos (Keeling) Islands" },    { "text" : "Colombia", "value" : "Colombia" },    { "text" : "Comoros", "value" : "Comoros" },    { "text" : "Congo", "value" : "Congo" },    { "text" : "Cook Islands", "value" : "Cook Islands" },    { "text" : "Costa Rica", "value" : "Costa Rica" },    { "text" : "Croatia", "value" : "Croatia" },    { "text" : "Cuba", "value" : "Cuba" },    { "text" : "Cyprus", "value" : "Cyprus" },    { "text" : "Czech Republic", "value" : "Czech Republic" },    { "text" : "Denmark", "value" : "Denmark" },    { "text" : "Djibouti", "value" : "Djibouti" },    { "text" : "Dominica", "value" : "Dominica" },    { "text" : "Dominican Republic", "value" : "Dominican Republic" },    { "text" : "East Timor", "value" : "East Timor" },    { "text" : "Ecuador", "value" : "Ecuador" },    { "text" : "Egypt", "value" : "Egypt" },    { "text" : "El Salvador", "value" : "El Salvador" },    { "text" : "England", "value" : "England" },    { "text" : "Equatorial Guinea", "value" : "Equatorial Guinea" },    { "text" : "Eritrea", "value" : "Eritrea" },    { "text" : "Estonia", "value" : "Estonia" },    { "text" : "Ethiopia", "value" : "Ethiopia" },    { "text" : "Falkland Islands", "value" : "Falkland Islands" },    { "text" : "Faroe Islands", "value" : "Faroe Islands" },    { "text" : "Fiji", "value" : "Fiji" },    { "text" : "Finland", "value" : "Finland" },    { "text" : "France", "value" : "France" },    { "text" : "French Guiana", "value" : "French Guiana" },    { "text" : "French Polynesia", "value" : "French Polynesia" },    { "text" : "Gabon", "value" : "Gabon" },    { "text" : "Gambia", "value" : "Gambia" },    { "text" : "Georgia", "value" : "Georgia" },    { "text" : "Germany", "value" : "Germany" },    { "text" : "Greece", "value" : "Greece" },    { "text" : "Guinea-Bissau", "value" : "Guinea-Bissau" },    { "text" : "Guyana", "value" : "Guyana" },    { "text" : "Haiti", "value" : "Haiti" },    { "text" : "Honduras", "value" : "Honduras" },    { "text" : "Hong Kong", "value" : "Hong Kong" },    { "text" : "Hungary", "value" : "Hungary" },    { "text" : "Iceland", "value" : "Iceland" },    { "text" : "India", "value" : "India" },    { "text" : "Indonesia", "value" : "Indonesia" },    { "text" : "Iran", "value" : "Iran" },    { "text" : "Iraq", "value" : "Iraq" },    { "text" : "Ireland", "value" : "Ireland" },    { "text" : "Israel", "value" : "Israel" },    { "text" : "Italy", "value" : "Italy" },    { "text" : "Ivory Coast", "value" : "Ivory Coast" },    { "text" : "Jamaica", "value" : "Jamaica" },    { "text" : "Japan", "value" : "Japan" },    { "text" : "Jordan", "value" : "Jordan" },    { "text" : "Kazakhstan", "value" : "Kazakhstan" },    { "text" : "Kenya", "value" : "Kenya" },    { "text" : "Kiribati", "value" : "Kiribati" },    { "text" : "Korea", "value" : "Korea" },    { "text" : "Korea (North)", "value" : "Korea (North)" },    { "text" : "Korea (South)", "value" : "Korea (South)" },    { "text" : "Kuwait", "value" : "Kuwait" },    { "text" : "Kyrgyzstan", "value" : "Kyrgyzstan" },    { "text" : "Laos", "value" : "Laos" },    { "text" : "Latvia", "value" : "Latvia" },    { "text" : "Lebanon", "value" : "Lebanon" },    { "text" : "Lesotho", "value" : "Lesotho" },    { "text" : "Liberia", "value" : "Liberia" },    { "text" : "Libya", "value" : "Libya" },    { "text" : "Liechtenstein", "value" : "Liechtenstein" },    { "text" : "Lithuania", "value" : "Lithuania" },    { "text" : "Luxembourg", "value" : "Luxembourg" },    { "text" : "Macau", "value" : "Macau" },    { "text" : "Macedonia", "value" : "Macedonia" },    { "text" : "Madagascar", "value" : "Madagascar" },    { "text" : "Malawi", "value" : "Malawi" },    { "text" : "Malaysia", "value" : "Malaysia" },    { "text" : "Maldives", "value" : "Maldives" },    { "text" : "Mali", "value" : "Mali" },    { "text" : "Malta", "value" : "Malta" },    { "text" : "Mexico", "value" : "Mexico" },    { "text" : "Morocco", "value" : "Morocco" },    { "text" : "Netherlands", "value" : "Netherlands" },    { "text" : "New Zealand", "value" : "New Zealand" },    { "text" : "Norway", "value" : "Norway" },    { "text" : "Pakistan", "value" : "Pakistan" },    { "text" : "Philippines", "value" : "Philippines" },    { "text" : "Poland", "value" : "Poland" },    { "text" : "Portugal", "value" : "Portugal" },    { "text" : "Puerto Rico", "value" : "Puerto Rico" },    { "text" : "Romania", "value" : "Romania" },    { "text" : "Russia", "value" : "Russia" },    { "text" : "Singapore", "value" : "Singapore" },    { "text" : "Slovak Republic", "value" : "Slovak Republic" },    { "text" : "Slovenia", "value" : "Slovenia" },    { "text" : "South Africa", "value" : "South Africa" },    { "text" : "Spain", "value" : "Spain" },    { "text" : "Sweden", "value" : "Sweden" },    { "text" : "Switzerland", "value" : "Switzerland" },    { "text" : "Taiwan", "value" : "Taiwan" },    { "text" : "Thailand", "value" : "Thailand" },    { "text" : "Turkey", "value" : "Turkey" },    { "text" : "Ukraine", "value" : "Ukraine" },    { "text" : "United Kingdom", "value" : "United Kingdom" },    { "text" : "United States", "value" : "United States" },    { "text" : "Venezuela", "value" : "Venezuela" },    { "text" : "Vietnam", "value" : "Vietnam" },    { "text" : "Yugoslavia", "value" : "Yugoslavia" }] };var occupationList = { "occupations" : [    { "text" : "Admin/Support", "value" : "Admin/Support" },    { "text" : "Automotive", "value" : "Automotive" },    { "text" : "Education", "value" : "Education" },    { "text" : "Gov't/Public Service", "value" : "Gov't/Public Service" },    { "text" : "Healthcare", "value" : "Healthcare" },    { "text" : "Human Resources", "value" : "Human Resources" },    { "text" : "Legal", "value" : "Legal" },    { "text" : "Marketing", "value" : "Marketing" },    { "text" : "Military", "value" : "Military" },    { "text" : "Nursing", "value" : "Nursing" },    { "text" : "Other", "value" : "Other" },    { "text" : "Restaurant & Hospitality", "value" : "Restaurant & Hospitality" },    { "text" : "Retail", "value" : "Retail" },    { "text" : "Retired", "value" : "Retired" },    { "text" : "Sales", "value" : "Sales" },    { "text" : "Students/Recent Grads", "value" : "Students/Recent Grads" },    { "text" : "Technology", "value" : "Technology" },    { "text" : "Trades", "value" : "Trades" },    { "text" : "Transportation", "value" : "Transportation" }] };var stateList = { "states" : [    { "text" : "Alabama", "value" : "Alabama" },    { "text" : "Alaska", "value" : "Alaska" },    { "text" : "Arizona", "value" : "Arizona" },    { "text" : "Arkansas", "value" : "Arkansas" },    { "text" : "California", "value" : "California" },    { "text" : "Colorado", "value" : "Colorado" },    { "text" : "Connecticut", "value" : "Connecticut" },    { "text" : "Delaware", "value" : "Delaware" },    { "text" : "Florida", "value" : "Florida" },    { "text" : "Georgia", "value" : "Georgia" },    { "text" : "Hawaii", "value" : "Hawaii" },    { "text" : "Idaho", "value" : "Idaho" },    { "text" : "Illinois", "value" : "Illinois" },    { "text" : "Indiana", "value" : "Indiana" },    { "text" : "Iowa", "value" : "Iowa" },    { "text" : "Kansas", "value" : "Kansas" },    { "text" : "Kentucky", "value" : "Kentucky" },    { "text" : "Louisiana", "value" : "Louisiana" },    { "text" : "Maine", "value" : "Maine" },    { "text" : "Maryland", "value" : "Maryland" },    { "text" : "Massachusetts", "value" : "Massachusetts" },    { "text" : "Michigan", "value" : "Michigan" },    { "text" : "Minnesota", "value" : "Minnesota" },    { "text" : "Mississippi", "value" : "Mississippi" },    { "text" : "Missouri", "value" : "Missouri" },    { "text" : "Montana", "value" : "Montana" },    { "text" : "Nebraska", "value" : "Nebraska" },    { "text" : "Nevada", "value" : "Nevada" },    { "text" : "New Hampshire", "value" : "New Hampshire" },    { "text" : "New Jersey", "value" : "New Jersey" },    { "text" : "New Mexico", "value" : "New Mexico" },    { "text" : "New York", "value" : "New York" },    { "text" : "North Carolina", "value" : "North Carolina" },    { "text" : "North Dakota", "value" : "North Dakota" },    { "text" : "Ohio", "value" : "Ohio" },    { "text" : "Oklahoma", "value" : "Oklahoma" },    { "text" : "Oregon", "value" : "Oregon" },    { "text" : "Pennsylvania", "value" : "Pennsylvania" },    { "text" : "Rhode Island", "value" : "Rhode Island" },    { "text" : "South Carolina", "value" : "South Carolina" },    { "text" : "South Dakota", "value" : "South Dakota" },    { "text" : "Tennessee", "value" : "Tennessee" },    { "text" : "Texas", "value" : "Texas" },    { "text" : "Utah", "value" : "Utah" },    { "text" : "Vermont", "value" : "Vermont" },    { "text" : "Virginia", "value" : "Virginia" },    { "text" : "Washington", "value" : "Washington" },    { "text" : "West Virginia", "value" : "West Virginia" },    { "text" : "Wisconsin", "value" : "Wisconsin" },    { "text" : "Wyoming", "value" : "Wyoming" }] };var hospitalList = { "hospitals" : [        { "text" : "Community Memorial Hospital", "value" : "6914" }        , { "text" : "Aalborg Sygehus, Afsnit Nord", "value" : "61896" }        , { "text" : "Abbott Northwestern Hospital", "value" : "41658" }        , { "text" : "Abington Memorial Hospital", "value" : "37896" }        , { "text" : "Academisch Ziekenhuis Maastricht", "value" : "11526" }        , { "text" : "Addenbrooke's  Hospital", "value" : "23708" }        , { "text" : "Adventist Hinsdale Hospital", "value" : "85362" }        , { "text" : "Adventist Medical Center", "value" : "92340" }        , { "text" : "Advocate Christ Medical Center", "value" : "6671" }        , { "text" : "Advocate Good Shepherd Hospital", "value" : "7217" }        , { "text" : "Advocate Good Shepherd Hospital", "value" : "11520" }        , { "text" : "Advocate Illinois Masonic Medical Center", "value" : "55246" }        , { "text" : "Advocate Lutheran General Hospital", "value" : "6977" }        , { "text" : "Advocate South Suburban Hospital", "value" : "69455" }        , { "text" : "Akron City Hospital", "value" : "6881" }        , { "text" : "Akron General Medical Center", "value" : "58166" }        , { "text" : "Alaska Regional Hospital", "value" : "6950" }        , { "text" : "Albany Medical Center", "value" : "6995" }        , { "text" : "Alfried Krupp Krankenhaus", "value" : "75020" }        , { "text" : "Algemeen Stedelijk Ziekenhuis", "value" : "55333" }        , { "text" : "Algemeen Ziekenhuis SINT-ELISABETH", "value" : "58210" }        , { "text" : "All Children's Hospital", "value" : "6728" }        , { "text" : "All India Institute of Medical Sciences", "value" : "41697" }        , { "text" : "Allegheny General Hospital", "value" : "58172" }        , { "text" : "Allen Memorial Hospital", "value" : "92343" }        , { "text" : "Allgemeines KrankenHaus Wien", "value" : "6599" }        , { "text" : "Allgemeines KrankenHaus Wien", "value" : "43279" }        , { "text" : "Alliance Hospital", "value" : "6464" }        , { "text" : "Almazovskij Hospital", "value" : "86447" }        , { "text" : "Alta Bates Summit Medical Center (Summit Campus)", "value" : "6752" }        , { "text" : "Alysis Zorggroep Arnhem", "value" : "92346" }        , { "text" : "American Hospital of Paris", "value" : "85118" }        , { "text" : "Ankara Ataturk Egitim Ve Arastirma Hastanesi", "value" : "73559" }        , { "text" : "Anne Arundel Medical Center", "value" : "11579" }        , { "text" : "Antoni Van Leeuwenhoek Ziekenhuis", "value" : "11582" }        , { "text" : "Appleton Medical Center", "value" : "53504" }        , { "text" : "Arhus Universitetshospital", "value" : "80667" }        , { "text" : "Arkansas Children's Hospital", "value" : "7076" }        , { "text" : "Army 301 Hospital", "value" : "41685" }        , { "text" : "Asan Medical Center", "value" : "55360" }        , { "text" : "Ascot Hospital", "value" : "58879" }        , { "text" : "Aspirus Wausau Hospital", "value" : "53507" }        , { "text" : "Athens Medical Center", "value" : "41655" }        , { "text" : "Atlantic City Medical Center-City Division", "value" : "69389" }        , { "text" : "Aurora Memorial Hospital of Burlington", "value" : "62139" }        , { "text" : "Aurora St. Luke's Medical Center", "value" : "6431" }        , { "text" : "Aventura Hospital and Medical Center", "value" : "55232" }        , { "text" : "Avera McKennan Hospital", "value" : "55300" }        , { "text" : "AZ Groeninge", "value" : "55336" }        , { "text" : "AZ Maria Middelares", "value" : "55339" }        , { "text" : "AZ Sint-Jan", "value" : "41634" }        , { "text" : "AZ Sint-Lucas", "value" : "55345" }        , { "text" : "Azienda Istituto Cardioreumatologico Ancona", "value" : "43237" }        , { "text" : "Azienda Ospedaliera di Padova", "value" : "86632" }        , { "text" : "Azienda Ospedaliera Pisana Stabilimento di Cisanello", "value" : "43231" }        , { "text" : "Azienda Ospedaliera San Camillo Forlanini", "value" : "61264" }        , { "text" : "Azienda Ospedaliera San Gerardo", "value" : "61888" }        , { "text" : "Azienda Ospedaliera Santa Maria della Misericordia", "value" : "6539" }        , { "text" : "Azienda Ospedaliera V. Monaldi", "value" : "43216" }        , { "text" : "Azienda Ospedaliera Villa Sofia-Cervello", "value" : "61267" }        , { "text" : "Bakersfield Memorial Hospital", "value" : "69308" }        , { "text" : "Ball Memorial Hospital", "value" : "42758" }        , { "text" : "Baltimore Washington Medical Center", "value" : "69365" }        , { "text" : "Bangkok Heart Hospital", "value" : "61852" }        , { "text" : "Banner - North Colorado Medical Center", "value" : "85220" }        , { "text" : "Banner Baywood Medical Center", "value" : "51423" }        , { "text" : "Banner Desert Medical Center", "value" : "54486" }        , { "text" : "Banner Estrella Medical Center", "value" : "69452" }        , { "text" : "Banner Gateway Medical Center", "value" : "69287" }        , { "text" : "Banner Good Samaritan Medical Center - Phoenix", "value" : "7226" }        , { "text" : "Banner Heart Hospital", "value" : "7220" }        , { "text" : "Banner McKee Medical Center", "value" : "85223" }        , { "text" : "Banner Thunderbird Medical Center", "value" : "7229" }        , { "text" : "Baptist Health Medical Center", "value" : "43759" }        , { "text" : "Baptist Health Medical Center-Little Rock", "value" : "42157" }        , { "text" : "Baptist Hospital", "value" : "6782" }        , { "text" : "Baptist Hospital", "value" : "53453" }        , { "text" : "Baptist Hospital East", "value" : "82948" }        , { "text" : "Baptist Hospital of Miami", "value" : "6305" }        , { "text" : "Baptist Hospital West", "value" : "92349" }        , { "text" : "Baptist Medical Center", "value" : "43837" }        , { "text" : "Baptist Medical Center", "value" : "43576" }        , { "text" : "Baptist Memorial Hospital Golden Triangle", "value" : "51921" }        , { "text" : "Baptist Memorial Hospital-Memphis", "value" : "53540" }        , { "text" : "Baptist Shelby", "value" : "50911" }        , { "text" : "Baptist St. Anthony's Health System", "value" : "55315" }        , { "text" : "Barnes-Jewish Hospital", "value" : "53471" }        , { "text" : "Barnet & Chase Farm NHS trust", "value" : "92355" }        , { "text" : "Battle Creek Health System", "value" : "62102" }        , { "text" : "Bay Medical Center", "value" : "7136" }        , { "text" : "Baylor All Saints Medical Center at Fort Worth", "value" : "55312" }        , { "text" : "Baylor Medical Center at Frisco", "value" : "85524" }        , { "text" : "Baylor Regional Medical Center at Grapevine", "value" : "65834" }        , { "text" : "Baylor Regional Medical Center at Plano", "value" : "51936" }        , { "text" : "Baylor University Medical Center", "value" : "6308" }        , { "text" : "Baystate Medical Center", "value" : "7118" }        , { "text" : "Beaufort Memorial Hospital", "value" : "71780" }        , { "text" : "Beaumont - Grosse Pointe Campus", "value" : "71857" }        , { "text" : "Bellin Health", "value" : "6944" }        , { "text" : "Benefis Healthcare-East Campus", "value" : "85423" }        , { "text" : "Bergan Mercy Medical Center", "value" : "51953" }        , { "text" : "Bern University Hospital", "value" : "85076" }        , { "text" : "Beth Israel Deaconess Medical Center", "value" : "71869" }        , { "text" : "Beth Israel Medical Center", "value" : "6311" }        , { "text" : "Bethesda North Hospital", "value" : "52152" }        , { "text" : "Biorobotics", "value" : "92409" }        , { "text" : "Bloomington Hospital", "value" : "81944" }        , { "text" : "Blount Memorial Hospital", "value" : "85520" }        , { "text" : "Bon Secours Maryview Medical Center - Portsmouth", "value" : "41670" }        , { "text" : "Bon Secours St. Francis Health System", "value" : "69422" }        , { "text" : "Bon Secours St. Francis Medical Center", "value" : "85545" }        , { "text" : "Boone Hospital Center", "value" : "65757" }        , { "text" : "Boston Medical Center", "value" : "6992" }        , { "text" : "Boulder Community Hospital", "value" : "71807" }        , { "text" : "Brandon Regional Hospital", "value" : "61990" }        , { "text" : "Bridgeport Hospital", "value" : "42737" }        , { "text" : "Brigham & Women’s Hospital", "value" : "7094" }        , { "text" : "Bronson Methodist Hospital", "value" : "58136" }        , { "text" : "Brookdale University Hospital and Medical Center", "value" : "58157" }        , { "text" : "Brooke Army Medical Center", "value" : "71839" }        , { "text" : "Brookwood Medical Center", "value" : "76637" }        , { "text" : "Broomfield Hospital", "value" : "85588" }        , { "text" : "Bryan LGH Medical Center", "value" : "6641" }        , { "text" : "Bryn Mawr Hospital", "value" : "37846" }        , { "text" : "C.H.U. Henri-Mondor", "value" : "43255" }        , { "text" : "C.H.U. Nancy-Brabois", "value" : "43252" }        , { "text" : "C.H.U. Saint-Pierre", "value" : "43258" }        , { "text" : "Cabell Huntington Hospital", "value" : "23735" }        , { "text" : "California Pacific Medical Center", "value" : "6683" }        , { "text" : "Canisius-Wilhelmina Ziekenhuis, Nijmegen", "value" : "61893" }        , { "text" : "Capital Health System-Fuld Campus", "value" : "58151" }        , { "text" : "Capital Regional Medical Center", "value" : "69284" }        , { "text" : "Carilion Roanoke Memorial Hospital", "value" : "6302" }        , { "text" : "Caritas St. Elizabeth's Medical Center", "value" : "68665" }        , { "text" : "Carle Foundation Hospital", "value" : "58117" }        , { "text" : "Carolinas Hospital System", "value" : "7061" }        , { "text" : "Carolinas Medical Center", "value" : "43588" }        , { "text" : "Carolinas Medical Center - NorthEast", "value" : "11591" }        , { "text" : "Carolinas Medical Center/University Hospital", "value" : "51906" }        , { "text" : "Casa di Cura Abano Terme", "value" : "41661" }        , { "text" : "Casa Di Cura La Madonnina", "value" : "61276" }        , { "text" : "Casa di Cura Pio XI", "value" : "86671" }        , { "text" : "Catawba Valley Medical Center", "value" : "7235" }        , { "text" : "Catholic Medical Center", "value" : "6317" }        , { "text" : "Cedar Park Regional Medical Center", "value" : "85527" }        , { "text" : "Cedars Medical Center", "value" : "6506" }        , { "text" : "Cedars-Sinai Medical Center", "value" : "6767" }        , { "text" : "Centennial Medical Center", "value" : "6425" }        , { "text" : "Center of General Surgery and Hepatic Transplant", "value" : "86605" }        , { "text" : "Central Baptist Hospital", "value" : "69353" }        , { "text" : "Central DuPage Hospital", "value" : "6716" }        , { "text" : "Central Military Hospital", "value" : "62319" }        , { "text" : "Central Mississippi Medical Center", "value" : "71783" }        , { "text" : "Centre Hosp de Nice - Hopital de L'Archet", "value" : "41694" }        , { "text" : "Centre Hospitalier Regional Clinique Saint-Joseph - Hopital de Warquignies", "value" : "61899" }        , { "text" : "Centre Hospitalier Universitaire de Nantes", "value" : "58199" }        , { "text" : "Centre Hospitalier Universitaire de Toulouse", "value" : "85121" }        , { "text" : "Century City Doctors Hospital", "value" : "7187" }        , { "text" : "Chambersburg Hospital", "value" : "92358" }        , { "text" : "Champlain Valley Physicians Hospital", "value" : "65886" }        , { "text" : "Chang Gung Memorial Hospital, Linkou", "value" : "60508" }        , { "text" : "Charit&eacute; - Universit&auml;tsmedizin Berlin", "value" : "6605" }        , { "text" : "Charite - Universitatsmedizin Berlin", "value" : "43285" }        , { "text" : "Charleston Area Medical Center", "value" : "53513" }        , { "text" : "Charlton Memorial Hospital", "value" : "69359" }        , { "text" : "Cheng Hsih Rehabilitation Medical Center", "value" : "60502" }        , { "text" : "Chestnut Hill Hospital", "value" : "85498" }        , { "text" : "Chettinad Health City", "value" : "62345" }        , { "text" : "Children's Hospital", "value" : "85226" }        , { "text" : "Childrens Hospital and Regional Medical Center, Seattle", "value" : "11573" }        , { "text" : "Children's Hospital Boston", "value" : "6434" }        , { "text" : "Childrens Hospital Los Angeles (CHLA)", "value" : "65825" }        , { "text" : "Children's Hospital Medical Center", "value" : "71786" }        , { "text" : "Children's Hospital of Orange County", "value" : "6911" }        , { "text" : "Children's Hospital of Philadelphia", "value" : "7046" }        , { "text" : "Childrens Medical Center Of Dallas", "value" : "65831" }        , { "text" : "Children's Memorial Medical Center", "value" : "85365" }        , { "text" : "Chilton Memorial Hospital", "value" : "85426" }        , { "text" : "Chippenham Johnston-Willis", "value" : "6713" }        , { "text" : "Chongqing Xinan Hospital", "value" : "92370" }        , { "text" : "CHR Citadelle Liege", "value" : "83502" }        , { "text" : "Christ Hospital", "value" : "37905" }        , { "text" : "Christiana Care", "value" : "55229" }        , { "text" : "Christus Santa Rosa Hospital-Medical Center", "value" : "58178" }        , { "text" : "Christus Schumpert Medical Center", "value" : "6764" }        , { "text" : "Christus Spohn Hospital-Shoreline", "value" : "92361" }        , { "text" : "Christus St. Frances Cabrini", "value" : "53465" }        , { "text" : "Christus St. Patrick Hospital", "value" : "50920" }        , { "text" : "CHRU de Lille", "value" : "58213" }        , { "text" : "CHRU Tours Bretonneau", "value" : "58789" }        , { "text" : "CHU Ambroise Pare", "value" : "65807" }        , { "text" : "CHU Ambroise Pare - Mons", "value" : "65997" }        , { "text" : "CHU BORDEAUX - hopital Pellegrin", "value" : "92364" }        , { "text" : "CHU Limoges", "value" : "61885" }        , { "text" : "CHU Nimes", "value" : "85600" }        , { "text" : "City of Hope National Medical Center", "value" : "6665" }        , { "text" : "Clarian Methodist Hospital", "value" : "6521" }        , { "text" : "Clarian Methodist Hospital (2 Systems)", "value" : "43201" }        , { "text" : "Clarian North Medical Center", "value" : "38384" }        , { "text" : "Clear Lake Regional Medical Center", "value" : "69434" }        , { "text" : "Cleveland Clinic Hospital", "value" : "92367" }        , { "text" : "Cleveland Clinic of Florida", "value" : "6734" }        , { "text" : "Clinica da Marley, Columbia", "value" : "92376" }        , { "text" : "Clinica Pinna Pintor", "value" : "43228" }        , { "text" : "Clinica Privata Villa Ragionieri", "value" : "86662" }        , { "text" : "Clinica Virgen Blanca", "value" : "38248" }        , { "text" : "Clinique Amboise Pare", "value" : "58786" }        , { "text" : "Clinique Ambroise Pare", "value" : "58219" }        , { "text" : "Clinique Belledonne", "value" : "52972" }        , { "text" : "Clinique Generale Beaulieu", "value" : "6704" }        , { "text" : "Clinique Generale Beaulieu", "value" : "43384" }        , { "text" : "Clinique les Grangettes", "value" : "65804" }        , { "text" : "Clinique les Grangettes", "value" : "66026" }        , { "text" : "Clinique Saint Jean Languedoc", "value" : "92373" }        , { "text" : "Clinique St. Augustin", "value" : "7106" }        , { "text" : "Clinique St. Augustin", "value" : "43786" }        , { "text" : "Clinique Victor Pauchet", "value" : "85124" }        , { "text" : "Cliniques Universitaires UCL de Mont-Godinne", "value" : "58222" }        , { "text" : "Coliseum Medical Center", "value" : "71789" }        , { "text" : "College Station Medical Center", "value" : "42788" }        , { "text" : "Columbia Regional Hospital", "value" : "65760" }        , { "text" : "Columbia St. Mary's Hospital Milwaukee", "value" : "53510" }        , { "text" : "Columbia University Medical Center at New York Presbyterian Hospital", "value" : "6482" }        , { "text" : "Community General Hospital", "value" : "65892" }        , { "text" : "Community Hospital", "value" : "37872" }        , { "text" : "Community Hospital", "value" : "69404" }        , { "text" : "Community Hospital", "value" : "56793" }        , { "text" : "Community Hospital North", "value" : "7052" }        , { "text" : "Community Medical Center", "value" : "51959" }        , { "text" : "Community Memorial Hospital", "value" : "69443" }        , { "text" : "Community Regional Medical Center", "value" : "6323" }        , { "text" : "Complesso Ospedaliero S. Giovanni Addolorata", "value" : "61297" }        , { "text" : "Concord Hospital", "value" : "53483" }        , { "text" : "Condell Medical Center", "value" : "37887" }        , { "text" : "Conway Regional Medical Center", "value" : "69302" }        , { "text" : "Cookeville Regional Medical Center", "value" : "55303" }        , { "text" : "Cooley Dickinson Hospital", "value" : "53522" }        , { "text" : "Cooper University Hospital", "value" : "6326" }        , { "text" : "Coral Springs Medical Center", "value" : "83946" }        , { "text" : "Covenant Health Care", "value" : "71860" }        , { "text" : "Covenant Medical Center", "value" : "7013" }        , { "text" : "Cox Medical Centers-South", "value" : "69377" }        , { "text" : "Creighton University Medical Center", "value" : "6329" }        , { "text" : "Crouse Hospital", "value" : "65889" }        , { "text" : "Crozer-Keystone Health System", "value" : "85501" }        , { "text" : "CSTAR (Canadian Surgical Technologies & Advanced Robotics)", "value" : "58710" }        , { "text" : "Danbury Hospital", "value" : "85232" }        , { "text" : "Dartmouth-Hitchcock Medical Center", "value" : "58096" }        , { "text" : "DCH Regional Medical Center", "value" : "80886" }        , { "text" : "Deaconess Hospital", "value" : "69350" }        , { "text" : "Deaconess Hospital", "value" : "85480" }        , { "text" : "Deaconess Medical Center", "value" : "85563" }        , { "text" : "Decatur General Hospital", "value" : "51965" }        , { "text" : "Decatur Memorial Hospital", "value" : "42755" }        , { "text" : "DeKalb Medical Center", "value" : "69341" }        , { "text" : "Delnor Community Hospital", "value" : "91412" }        , { "text" : "DePaul Health Center", "value" : "92379" }        , { "text" : "Deutsches Herzzentrum", "value" : "6608" }        , { "text" : "Deutsches Herzzentrum", "value" : "43288" }        , { "text" : "Doctors Hospital", "value" : "63909" }        , { "text" : "Doctor's Hospital", "value" : "86608" }        , { "text" : "Doctors Hospital at Renaissance", "value" : "42791" }        , { "text" : "Doctors Medical Center", "value" : "53444" }        , { "text" : "Dominican Hospital", "value" : "61978" }        , { "text" : "DongA University Medical Center", "value" : "62652" }        , { "text" : "Dover Medical", "value" : "85112" }        , { "text" : "Downtown Naples Hospital Campus", "value" : "61996" }        , { "text" : "Doylestown Hospital", "value" : "71872" }        , { "text" : "Duke Raleigh Hospital", "value" : "62108" }        , { "text" : "Duke University Hospital", "value" : "43012" }        , { "text" : "Durham Regional Hospital", "value" : "57659" }        , { "text" : "East Jefferson General Hospital", "value" : "51962" }        , { "text" : "Eastern Maine Medical Center", "value" : "7019" }        , { "text" : "Eisenhower Medical Center", "value" : "69326" }        , { "text" : "El Camino Community Hospital of Los Gatos", "value" : "85199" }        , { "text" : "El Camino Hospital", "value" : "51944" }        , { "text" : "Elliot Hospital", "value" : "65859" }        , { "text" : "Elmbrook Memorial Hospital", "value" : "85560" }        , { "text" : "Emergency Hospital of Bucharest", "value" : "43276" }        , { "text" : "Emory University Hospital", "value" : "62002" }        , { "text" : "Englewood Hospital & Medical Center", "value" : "82800" }        , { "text" : "Ente Ecclesiastico Ospedale Miulli", "value" : "61270" }        , { "text" : "Epworth Eastern Hospital", "value" : "43831" }        , { "text" : "Epworth Medical Centre", "value" : "43783" }        , { "text" : "Erlanger Medical Center", "value" : "11618" }        , { "text" : "Euroclinic", "value" : "86611" }        , { "text" : "Europa Ziekenhuizen (St. Elisabeth)", "value" : "58203" }        , { "text" : "Ev. Krankenhaus Bielefeld GmbH - Johannesstift", "value" : "92382" }        , { "text" : "Evanston Hospital", "value" : "11624" }        , { "text" : "Evergreen Healthcare", "value" : "92385" }        , { "text" : "Evergreen Healthcare", "value" : "92388" }        , { "text" : "Exempla Saint Joseph Hospital", "value" : "65880" }        , { "text" : "Fairview Southdale", "value" : "65847" }        , { "text" : "Fakulty Hospital", "value" : "86440" }        , { "text" : "Faulkner Hospital", "value" : "92575" }        , { "text" : "FirstHealth Moore Regional Hospital", "value" : "42489" }        , { "text" : "Flagstaff Medical Center", "value" : "55211" }        , { "text" : "Fletcher Allen Healthcare, Medical Center Campus", "value" : "62133" }        , { "text" : "Florence Nightingale Hospital", "value" : "59282" }        , { "text" : "Florida Hospital", "value" : "6815" }        , { "text" : "Florida Hospital Celebration Health", "value" : "62400" }        , { "text" : "Flowers Hospital", "value" : "69299" }        , { "text" : "Fondazione Istituto San Faffaele G. Giglio Di Cefalu'", "value" : "61279" }        , { "text" : "Foote Health System", "value" : "51903" }        , { "text" : "Forest Park Medical Center", "value" : "84620" }        , { "text" : "Forsyth Medical Center", "value" : "7244" }        , { "text" : "Fort Sanders Regional Medical Center", "value" : "7007" }        , { "text" : "Fortis Flt Lt Rajan Dhall Hospital", "value" : "62339" }        , { "text" : "Fox Chase Cancer Center", "value" : "11588" }        , { "text" : "Franklin Square Hospital Center", "value" : "92391" }        , { "text" : "Fremont Area Medical Center", "value" : "6839" }        , { "text" : "Frimley Park NHS Foundation Trust", "value" : "85591" }        , { "text" : "Froedtert & the Medical College of Wisconsin", "value" : "38061" }        , { "text" : "Frye Regional Medical Center", "value" : "55282" }        , { "text" : "Fujita Health University Hospital", "value" : "82420" }        , { "text" : "Fundacio Puigvert", "value" : "7142" }        , { "text" : "Fundacio Puigvert", "value" : "43822" }        , { "text" : "Galaxy Care Laparoscopy Institute", "value" : "62342" }        , { "text" : "Galway Clinic", "value" : "55354" }        , { "text" : "Gaston Memorial Hospital", "value" : "92394" }        , { "text" : "Gayrettepe Florence Nightingale Hospital", "value" : "62336" }        , { "text" : "Geisinger Medical Center", "value" : "6863" }        , { "text" : "Geisinger-Wyoming Valley Medical Center", "value" : "69413" }        , { "text" : "Genesis Medical Center", "value" : "71863" }        , { "text" : "Gentofte Amtssygehus", "value" : "85106" }        , { "text" : "George Washington University Hospital", "value" : "6698" }        , { "text" : "GIE CHIRURGIE ASSISTEE ROBOT LIGERIEN", "value" : "92397" }        , { "text" : "Glendale Adventist Medical Center", "value" : "92445" }        , { "text" : "Good Samaritan Hospital", "value" : "43906" }        , { "text" : "Good Samaritan Hospital", "value" : "43372" }        , { "text" : "Good Samaritan Hospital", "value" : "85471" }        , { "text" : "Good Samaritan Hospital - Cincinnati", "value" : "6692" }        , { "text" : "Good Samaritan Hospital - Kearney", "value" : "71842" }        , { "text" : "Good Samaritan Hospital & Rehabilitation Center", "value" : "71810" }        , { "text" : "Good Samaritan Hospital Corvallis", "value" : "85495" }        , { "text" : "Good Samaritan Medical Center", "value" : "85235" }        , { "text" : "Goshen General Hospital", "value" : "55258" }        , { "text" : "Grace Hospital", "value" : "65917" }        , { "text" : "Grand Strand Regional Medical Center", "value" : "69425" }        , { "text" : "Grant-Riverside Methodist Hospitals-Grant Campus", "value" : "79139" }        , { "text" : "Great River Medical Center", "value" : "6974" }        , { "text" : "Greater Baltimore Medical Center", "value" : "7121" }        , { "text" : "Greenslopes Private Hospital", "value" : "80717" }        , { "text" : "Greenwich Hospital", "value" : "41691" }        , { "text" : "Gulf Coast Medical Center", "value" : "92400" }        , { "text" : "Gundersen Lutheran", "value" : "65850" }        , { "text" : "Guy's & St. Thomas' Hospital", "value" : "7253" }        , { "text" : "Gwinnett Medical Center", "value" : "71792" }        , { "text" : "H. Lee Moffitt Cancer Center & Research Institute", "value" : "65787" }        , { "text" : "Hackensack University Medical Center", "value" : "6335" }        , { "text" : "Hackley Hospital", "value" : "11600" }        , { "text" : "Hadassah Medical Organization", "value" : "86629" }        , { "text" : "Hahnemann University Hospital", "value" : "6518" }        , { "text" : "Halifax Health Medical Center", "value" : "42746" }        , { "text" : "Hallym University Medical Center", "value" : "55363" }        , { "text" : "Hamad General Hospital", "value" : "66006" }        , { "text" : "Hamilton Medical Center", "value" : "85359" }        , { "text" : "Hamot Medical Center", "value" : "6527" }        , { "text" : "Hardin Memorial Hospital", "value" : "85382" }        , { "text" : "Harris Methodist Hospital, Ft. Worth", "value" : "62121" }        , { "text" : "Harris Methodist Southwest Hospital", "value" : "62124" }        , { "text" : "Harrison Medical Center", "value" : "65828" }        , { "text" : "Hartford Hospital", "value" : "6803" }        , { "text" : "Haukeland universitetssjukehus", "value" : "80661" }        , { "text" : "Heilig Geist-Krankenhaus GmbH", "value" : "92406" }        , { "text" : "Heilig Hart Ziekenhuis Roeselare", "value" : "11565" }        , { "text" : "Henrico Doctors' Hospital", "value" : "6338" }        , { "text" : "Henry Ford Hospital", "value" : "6341" }        , { "text" : "Henry Ford Macomb Hospital", "value" : "6686" }        , { "text" : "Henry Ford West Bloomfield", "value" : "86367" }        , { "text" : "Henry Ford Wyandotte Hospital", "value" : "42764" }        , { "text" : "Herlev Hospital", "value" : "58225" }        , { "text" : "Herzzentrum Dresden GmbH Universit&auml;t", "value" : "6617" }        , { "text" : "Herzzentrum Dresden GmbH UniversitSt", "value" : "43297" }        , { "text" : "HHC Elmhurst Hospital Center", "value" : "6932" }        , { "text" : "High Point Regional Hospital", "value" : "7247" }        , { "text" : "Highland Hospital", "value" : "62111" }        , { "text" : "HIMA San Pablo Bayamon", "value" : "62305" }        , { "text" : "HIMA San Pablo Caguas", "value" : "62302" }        , { "text" : "Hippocrateon  - Private Hospital", "value" : "86623" }        , { "text" : "Hoag Memorial Hospital Presbyterian", "value" : "6875" }        , { "text" : "Holland Hospital", "value" : "53528" }        , { "text" : "Holy Cross Health", "value" : "62099" }        , { "text" : "Holy Cross Hospital", "value" : "37840" }        , { "text" : "Holy Name Hospital", "value" : "85429" }        , { "text" : "Holy Spirit Hospital", "value" : "85504" }        , { "text" : "Hong Kong Sanatorium & Hospital", "value" : "61251" }        , { "text" : "Hopital du Sacre-Coeur de Montreal", "value" : "41621" }        , { "text" : "Hopital Europeen Georges Pompidou", "value" : "6569" }        , { "text" : "Hopital Europeen Georges Pompidou", "value" : "43249" }        , { "text" : "Hopital Foch", "value" : "92403" }        , { "text" : "Hopital La Pitie - Salpetriere", "value" : "11552" }        , { "text" : "Hopital St. Joseph", "value" : "58207" }        , { "text" : "Hopital Universitaire de Geneve", "value" : "11556" }        , { "text" : "Hopitaux Univ - IRCAD Training Center", "value" : "37927" }        , { "text" : "Hopitaux Unversitaires de Geneve", "value" : "65801" }        , { "text" : "Hospital Alemao Oswaldo Cruz", "value" : "83555" }        , { "text" : "Hospital Civil Carlos Haya", "value" : "68301" }        , { "text" : "Hospital Clinico San Carlos", "value" : "37933" }        , { "text" : "Hospital de Basurto", "value" : "87930" }        , { "text" : "Hospital de Bellvitge", "value" : "87942" }        , { "text" : "Hospital de Clinicas Caracas", "value" : "61876" }        , { "text" : "Hospital de Donostia", "value" : "87939" }        , { "text" : "Hospital de traumatologia y emergencia Dr. Abete", "value" : "74293" }        , { "text" : "Hospital de Txagorritxu", "value" : "87933" }        , { "text" : "Hospital de Valle Hebron", "value" : "87948" }        , { "text" : "Hospital Erasme", "value" : "6581" }        , { "text" : "Hospital Erasme", "value" : "43261" }        , { "text" : "Hospital Israelita Albert Einstein", "value" : "83549" }        , { "text" : "Hospital Italiano de Buenos Aires", "value" : "66003" }        , { "text" : "Hospital Kuala Lumpur", "value" : "61855" }        , { "text" : "Hospital of St. Raphael", "value" : "7115" }        , { "text" : "Hospital of the University of Pennsylvania", "value" : "58237" }        , { "text" : "Hospital Ruber Internacional", "value" : "37936" }        , { "text" : "Hospital San Jaime de Torrevieja", "value" : "87945" }        , { "text" : "Hospital San Jose Tec de Monterrey", "value" : "91951" }        , { "text" : "Hospital Sirio & Libanes", "value" : "83552" }        , { "text" : "Hospital Virgen del Rocio", "value" : "61882" }        , { "text" : "Hunter Holmes McGuire VA Medical Center", "value" : "71875" }        , { "text" : "Huntington Memorial Hospital", "value" : "7190" }        , { "text" : "Huntsville Hospital", "value" : "55208" }        , { "text" : "Hygeia Hospital", "value" : "86614" }        , { "text" : "IEO Istituto Europeo Di Oncologia", "value" : "61285" }        , { "text" : "Imperial Point Medical Center", "value" : "69338" }        , { "text" : "Indiana University Hospital (Clarian Health)", "value" : "6674" }        , { "text" : "Ingham Regional Medical Center-Greenlawn Campus", "value" : "58133" }        , { "text" : "Innsbruck Medical University", "value" : "6602" }        , { "text" : "Innsbruck Medical University", "value" : "43282" }        , { "text" : "Inova Fairfax Hospital", "value" : "6344" }        , { "text" : "Inova Loudoun Hospital", "value" : "80883" }        , { "text" : "Institut Mutualiste Montsouris", "value" : "11523" }        , { "text" : "Institut Paoli-Calmette", "value" : "63906" }        , { "text" : "Instituto Medico La Floresta", "value" : "61307" }        , { "text" : "Intermountain Medical Center", "value" : "58228" }        , { "text" : "Iowa Methodist Medical Center", "value" : "6404" }        , { "text" : "Istituto Clinico Humanitas", "value" : "86665" }        , { "text" : "J.Mitra & Bros.", "value" : "92412" }        , { "text" : "Jackson Hospital", "value" : "65781" }        , { "text" : "Jackson Memorial Hospital", "value" : "37878" }        , { "text" : "Jackson South Community Hospital", "value" : "37917" }        , { "text" : "Jackson-Madison County Hospital", "value" : "77810" }        , { "text" : "Jan Palfijn Hospital Gent", "value" : "55342" }        , { "text" : "Jeff Anderson Regional Medical Center", "value" : "80818" }        , { "text" : "Jeroen Bosch Ziekenhuis/Groot Ziekengasthuis", "value" : "61902" }        , { "text" : "Jewish Hospital", "value" : "62090" }        , { "text" : "Jewish Hospital", "value" : "92352" }        , { "text" : "JFK Medical Center", "value" : "61993" }        , { "text" : "John C. Lincoln Hospital", "value" : "65868" }        , { "text" : "John Muir Medical Center", "value" : "71813" }        , { "text" : "John Muir Medical Center, Concord Campus", "value" : "6368" }        , { "text" : "John Peter Smith Diagnostic and Surgery Hospital", "value" : "53498" }        , { "text" : "John Peter Smith Hospital", "value" : "53543" }        , { "text" : "Johns Hopkins Bayview Medical Center", "value" : "7028" }        , { "text" : "Johns Hopkins Hospital", "value" : "6347" }        , { "text" : "Johnson City Medical Center Hospital", "value" : "69428" }        , { "text" : "Kaiser Foundation Hospital", "value" : "69281" }        , { "text" : "Kaiser Permanente", "value" : "55223" }        , { "text" : "Kaiser Permanente - Santa Clara", "value" : "85202" }        , { "text" : "Kanazawa University Hospital", "value" : "60780" }        , { "text" : "Kansas University Hospital Authority", "value" : "85376" }        , { "text" : "Kantonsspital Aarau", "value" : "60715" }        , { "text" : "Kantonsspital Frauenfeld", "value" : "61871" }        , { "text" : "Kantonsspital Graubunden", "value" : "75938" }        , { "text" : "Kantonsspital Winterthur", "value" : "85100" }        , { "text" : "Karmanos Cancer Institute", "value" : "7088" }        , { "text" : "Karolinska Sjukhuset", "value" : "43273" }        , { "text" : "Kendall Medical Center", "value" : "85238" }        , { "text" : "Kennedy Memorial Hospitals-Univ Med Center", "value" : "69392" }        , { "text" : "Kenosha Hospital & Medical Center", "value" : "85554" }        , { "text" : "Kettering Medical Center", "value" : "11615" }        , { "text" : "Khanty Mansijsk Hospital", "value" : "86453" }        , { "text" : "King Abdul Aziz University Hospital", "value" : "60727" }        , { "text" : "King Fahd Military Medical Complex", "value" : "60730" }        , { "text" : "King Fahd Specialist Hospital", "value" : "60718" }        , { "text" : "King Faisal Specialist Hospital & Research Center", "value" : "43405" }        , { "text" : "King Faisal Specialist Hospital & Research Center", "value" : "60721" }        , { "text" : "King Khaled University Hospital", "value" : "43402" }        , { "text" : "King Khaled University Hospital", "value" : "60724" }        , { "text" : "Kings Daughter Medical Center", "value" : "53462" }        , { "text" : "Klina Brasschaat", "value" : "82941" }        , { "text" : "Klinik Hirslanden", "value" : "43852" }        , { "text" : "Klinik Hirslanden", "value" : "7172" }        , { "text" : "Klinik Lindberg AG", "value" : "58196" }        , { "text" : "Kliniken Essen-Mitte", "value" : "85091" }        , { "text" : "Kliniken GmbH - Klinikum Ludenscheid", "value" : "85615" }        , { "text" : "Klinikum der Johann Wolfgang Goethe-UniversitSt", "value" : "43291" }        , { "text" : "Klinikum der Johannes Gutenberg Universitat", "value" : "58190" }        , { "text" : "Klinikum der Stadt Ludwigshafen", "value" : "85085" }        , { "text" : "Klinikum der Universitat Munchen Grosshardern", "value" : "85606" }        , { "text" : "Klinikum Ingolstadt", "value" : "58216" }        , { "text" : "Klinikum Leverkusen", "value" : "56797" }        , { "text" : "Klinikum Leverkusen", "value" : "56800" }        , { "text" : "Klinikum Mannheim gGmbH Universitats", "value" : "66000" }        , { "text" : "Klinikum St. Elisabeth Straubing GmbH", "value" : "58231" }        , { "text" : "Klinikum Worms", "value" : "85609" }        , { "text" : "Klinikverbund Bremen", "value" : "85097" }        , { "text" : "Klinikverbund Bremen", "value" : "85094" }        , { "text" : "Knappschaftskrankenhaus Dortmund", "value" : "85612" }        , { "text" : "Kootenai Medical Center", "value" : "62008" }        , { "text" : "Korea University Medical Center", "value" : "62655" }        , { "text" : "KyungPook National University Hospital", "value" : "62644" }        , { "text" : "Kyushu University Hospital", "value" : "60783" }        , { "text" : "La Clinique Saint George", "value" : "55348" }        , { "text" : "Lafayette General Medical Center", "value" : "51918" }        , { "text" : "Lahey Clinic Medical Center", "value" : "37857" }        , { "text" : "Laiko University Hospital - (Public)", "value" : "86617" }        , { "text" : "Lake Norman Regional Medical Center", "value" : "69386" }        , { "text" : "Lakeland Regional Medical Center", "value" : "7127" }        , { "text" : "Lakeland Regional Medical Center, St. Joseph", "value" : "53984" }        , { "text" : "Lakeside Women's Hospital", "value" : "71845" }        , { "text" : "Lancaster General Hospital", "value" : "55297" }        , { "text" : "Lancaster Regional Medical Center", "value" : "7001" }        , { "text" : "Lankenau Hospital", "value" : "6947" }        , { "text" : "Lanssjukhuset Halmstad", "value" : "85573" }        , { "text" : "Lanssjukhuset Ryhov", "value" : "58193" }        , { "text" : "LAS Palmas Medical Center", "value" : "69296" }        , { "text" : "Latrobe Area Hospital", "value" : "85507" }        , { "text" : "Legacy Good Samaritan Hospital & Medical Center", "value" : "37908" }        , { "text" : "Legacy Salmon Creek", "value" : "85566" }        , { "text" : "Lehigh Valley Hospital", "value" : "62118" }        , { "text" : "Lenox Hill Hospital", "value" : "6350" }        , { "text" : "Liberty Hospital", "value" : "41628" }        , { "text" : "Linz Barmherzige Schwestern", "value" : "85082" }        , { "text" : "Lister Hospital", "value" : "85585" }        , { "text" : "Little Company of Mary Hospital", "value" : "43873" }        , { "text" : "Little Company of Mary Hospital - Torrance", "value" : "37911" }        , { "text" : "Little Company of Mary Hospital and Health Care Centers", "value" : "7193" }        , { "text" : "Loma Linda University Heart and Surgical Hospital", "value" : "71816" }        , { "text" : "Loma Linda University Medical Center", "value" : "6941" }        , { "text" : "Long Beach Memorial Medical Center", "value" : "41646" }        , { "text" : "Longview Regional Medical Center", "value" : "55318" }        , { "text" : "Lowell General Hospital", "value" : "65856" }        , { "text" : "Loyola University Health System", "value" : "37860" }        , { "text" : "Lucile Packard Children's Hospital at Stanford", "value" : "6731" }        , { "text" : "Lund University Hospital", "value" : "43819" }        , { "text" : "Lutheran Hospital of Indiana", "value" : "7181" }        , { "text" : "Lynchburg General Hospital", "value" : "65895" }        , { "text" : "Maasstadziekenhuis Rotterdam", "value" : "81652" }        , { "text" : "Madigan Army Medical Center", "value" : "71819" }        , { "text" : "Magee-Women's Hospital", "value" : "85510" }        , { "text" : "Maimonides Medical Center", "value" : "6353" }        , { "text" : "Maine General Medical Center", "value" : "85408" }        , { "text" : "Maine Medical Center", "value" : "6800" }        , { "text" : "Manatee Memorial Hospital", "value" : "69290" }        , { "text" : "Manchester Memorial Hospital", "value" : "58105" }        , { "text" : "Marienhospital", "value" : "87127" }        , { "text" : "Marin General Hospital", "value" : "58099" }        , { "text" : "Mary Imogene Bassett Hospital", "value" : "69398" }        , { "text" : "Mary Washington Hospital", "value" : "51968" }        , { "text" : "Masarykova Nemocnice", "value" : "86437" }        , { "text" : "Massachusetts General Hospital", "value" : "62093" }        , { "text" : "Mater Private", "value" : "92418" }        , { "text" : "Mayo Clinic (Phoenix)", "value" : "6827" }        , { "text" : "Mayo Clinic (Rochester)", "value" : "6356" }        , { "text" : "MCGHealth", "value" : "71795" }        , { "text" : "McKay Dee Hospital Center", "value" : "91174" }        , { "text" : "McKay Dee Hospital Center", "value" : "92424" }        , { "text" : "McKenzie-Willamette Medical Center", "value" : "11570" }        , { "text" : "McLaren Regional Medical Center", "value" : "7196" }        , { "text" : "Mease Countryside Hospital", "value" : "73662" }        , { "text" : "Medical Center At Princeton", "value" : "85432" }        , { "text" : "Medical Center of Central Georgia", "value" : "58114" }        , { "text" : "Medical Center of the Rockies", "value" : "51897" }        , { "text" : "Medical University of Pleven", "value" : "86626" }        , { "text" : "Medical University of South Carolina", "value" : "58187" }        , { "text" : "Memorial Health System of East Texas", "value" : "85144" }        , { "text" : "Memorial Hermann Memorial City Hospital", "value" : "7025" }        , { "text" : "Memorial Hermann Southwest", "value" : "7112" }        , { "text" : "Memorial Hermann The Woodlands", "value" : "51900" }        , { "text" : "Memorial Hermann-Texas Medical Center", "value" : "6461" }        , { "text" : "Memorial Hospital", "value" : "53537" }        , { "text" : "Memorial Hospital", "value" : "85557" }        , { "text" : "Memorial Hospital & Health System", "value" : "41476" }        , { "text" : "Memorial Hospital at Easton", "value" : "58130" }        , { "text" : "Memorial Hospital at Gulfport", "value" : "92427" }        , { "text" : "Memorial Hospital Pembroke", "value" : "85344" }        , { "text" : "Memorial Hospital-Jacksonville", "value" : "85341" }        , { "text" : "Memorial Medical Center", "value" : "83037" }        , { "text" : "Memorial Medical Center - Lufkin", "value" : "51939" }        , { "text" : "Memorial Regional Hospital", "value" : "6629" }        , { "text" : "Memorial Regional Medical Center", "value" : "65898" }        , { "text" : "Memorial Sloan-Kettering Cancer Center", "value" : "6476" }        , { "text" : "Mercy Fairfield", "value" : "92433" }        , { "text" : "Mercy Health Center", "value" : "65130" }        , { "text" : "Mercy Health System", "value" : "82821" }        , { "text" : "Mercy Hospital", "value" : "85373" }        , { "text" : "Mercy Hospital", "value" : "81354" }        , { "text" : "Mercy Hospital", "value" : "6920" }        , { "text" : "Mercy Hospital", "value" : "58142" }        , { "text" : "Mercy Hospital & Medical Center", "value" : "91418" }        , { "text" : "Mercy Hospital of Scranton", "value" : "51950" }        , { "text" : "Mercy Iowa City", "value" : "65901" }        , { "text" : "Mercy Medical Center", "value" : "85411" }        , { "text" : "Mercy Medical Center - Canton", "value" : "69401" }        , { "text" : "Mercy Medical Center - Cedar Rapids", "value" : "69344" }        , { "text" : "Mercy Medical Center - Des Moines", "value" : "53516" }        , { "text" : "Mercy Medical Center - Springfield", "value" : "82945" }        , { "text" : "Mercy Medical Center-Sioux City", "value" : "65754" }        , { "text" : "Mercy San Juan Medical Center", "value" : "65822" }        , { "text" : "MeritCare Hospital", "value" : "6413" }        , { "text" : "Mesa General Hospital", "value" : "6650" }        , { "text" : "Methodist Hospital", "value" : "6917" }        , { "text" : "Methodist Hospital", "value" : "85420" }        , { "text" : "Methodist Medical Center", "value" : "71848" }        , { "text" : "Methodist Medical Center of Illinois", "value" : "6980" }        , { "text" : "Methodist Medical Center of Oak Ridge", "value" : "42785" }        , { "text" : "Methodist North Hospital", "value" : "55306" }        , { "text" : "Methodist Specialty and Transplant Hospital", "value" : "65840" }        , { "text" : "Methodist University Hospital", "value" : "65819" }        , { "text" : "Metro Health Hospital", "value" : "62105" }        , { "text" : "Metro Urology", "value" : "43489" }        , { "text" : "Metropolitan Methodist Hospital", "value" : "85530" }        , { "text" : "Miami Valley Hospital", "value" : "11672" }        , { "text" : "Middle Tennessee Medical Center", "value" : "69431" }        , { "text" : "MidState Medical Center", "value" : "92415" }        , { "text" : "Midwest Regional Medical Center", "value" : "7175" }        , { "text" : "Midwest Regional Medical Center", "value" : "69407" }        , { "text" : "Milton Hospital", "value" : "62096" }        , { "text" : "Mission Hospital Regional Medical Center", "value" : "61981" }        , { "text" : "Mission Hospitals", "value" : "41473" }        , { "text" : "Missionsarztliche Klinik GmbH", "value" : "85088" }        , { "text" : "Mississippi Baptist Medical Center", "value" : "6953" }        , { "text" : "Missouri Baptist Medical Center", "value" : "53468" }        , { "text" : "Mobile Infirmary Medical Center", "value" : "37854" }        , { "text" : "Monmouth Medical Center", "value" : "37875" }        , { "text" : "Montefiore Medical Center, Surgical Oncology Dept.", "value" : "56154" }        , { "text" : "Montefiore-Einstein Heart Center", "value" : "7199" }        , { "text" : "Morristown Memorial Hospital", "value" : "6998" }        , { "text" : "Morton Plant Hospital", "value" : "7049" }        , { "text" : "Moscow State Medical University ROSZDRAVA", "value" : "86450" }        , { "text" : "Mount Carmel West", "value" : "7055" }        , { "text" : "Mount Clemens Regional Medical Center", "value" : "7070" }        , { "text" : "Mount Sinai Medical Center", "value" : "65795" }        , { "text" : "Mount Sinai Medical Center", "value" : "52946" }        , { "text" : "Mountain View Hospital", "value" : "91169" }        , { "text" : "Mountain Vista Medical Center", "value" : "81941" }        , { "text" : "Mt Elizabeth Hospital", "value" : "61858" }        , { "text" : "Munroe Regional Medical Center", "value" : "6971" }        , { "text" : "Munson Medical Center", "value" : "81649" }        , { "text" : "Na Homolce", "value" : "42232" }        , { "text" : "Nacogdoches Memorial Hospital", "value" : "62127" }        , { "text" : "Naples Community Hospital North", "value" : "80657" }        , { "text" : "Naples Community Hospital, Downtown Campus", "value" : "7130" }        , { "text" : "Nash General Hospital", "value" : "58148" }        , { "text" : "National Cardiovascular Center", "value" : "60786" }        , { "text" : "National Institutes of Health", "value" : "7154" }        , { "text" : "Naval Medical Center", "value" : "69320" }        , { "text" : "New Hanover Regional Medical Center", "value" : "65816" }        , { "text" : "New Mexico VA Health Care System", "value" : "69395" }        , { "text" : "New York University Medical Center-Tisch Hospital", "value" : "85441" }        , { "text" : "Newark Beth Israel Medical Center", "value" : "6746" }        , { "text" : "NewYork-Presbyterian Hospital/Weill Cornell Medical Center", "value" : "51909" }        , { "text" : "North Carolina Baptist Hospital", "value" : "85456" }        , { "text" : "North Central Baptist Hospital", "value" : "6896" }        , { "text" : "North Colorado Medical Center", "value" : "41673" }        , { "text" : "North Colorado Medical Center", "value" : "43912" }        , { "text" : "North Florida Regional Medical Center", "value" : "55237" }        , { "text" : "North Kansas City Hospital", "value" : "11627" }        , { "text" : "North Memorial Health Care", "value" : "37834" }        , { "text" : "North Mississippi Medical Center", "value" : "71798" }        , { "text" : "North Shore University Hospital", "value" : "6749" }        , { "text" : "North Texas Hospital", "value" : "53501" }        , { "text" : "Northeast Georgia Medical Center", "value" : "71801" }        , { "text" : "Northeast Medical Center", "value" : "85459" }        , { "text" : "Northern Westchester Hospital", "value" : "51933" }        , { "text" : "Northridge Hospital Medical Center", "value" : "61984" }        , { "text" : "Northside Hospital - Atlanta", "value" : "7034" }        , { "text" : "Northside Hospital-Cherokee", "value" : "53456" }        , { "text" : "Northside Hospital-Forsyth", "value" : "65813" }        , { "text" : "Northwest Community Hospital", "value" : "7205" }        , { "text" : "Northwest Hospital & Medical Center", "value" : "55324" }        , { "text" : "Northwest Medical Center", "value" : "61972" }        , { "text" : "Northwest Medical Center-Springdale", "value" : "42716" }        , { "text" : "Northwestern Memorial Hospital", "value" : "7202" }        , { "text" : "Norton Hospital", "value" : "6986" }        , { "text" : "Norton Suburban Hospital", "value" : "85388" }        , { "text" : "Norwalk Hospital", "value" : "69329" }        , { "text" : "Nuovo Ospedale Di Modena S. Agostino-Estense", "value" : "61288" }        , { "text" : "NYU Medical Center", "value" : "6488" }        , { "text" : "Oaklawn Hospital", "value" : "6890" }        , { "text" : "Oakwood Hospital and Medical Center", "value" : "56164" }        , { "text" : "Ocala Regional Medical Center", "value" : "50923" }        , { "text" : "Ochsner Medical Center", "value" : "6929" }        , { "text" : "Ochsner Medical Center, Baton Rouge", "value" : "7241" }        , { "text" : "Ogden Regional Medical Center", "value" : "85542" }        , { "text" : "Ohio State University Medical Center", "value" : "6455" }        , { "text" : "Oklahoma Heart Hospital", "value" : "53531" }        , { "text" : "Oklahoma Surgical Hospital", "value" : "85483" }        , { "text" : "Oklahoma University Medical Center", "value" : "85486" }        , { "text" : "Onze Lieve Vrouw van Troost", "value" : "81655" }        , { "text" : "Onze Lieve Vrouwziekenhuis", "value" : "6584" }        , { "text" : "Onze Lieve Vrouwziekenhuis", "value" : "43264" }        , { "text" : "Orange Park Medical Center", "value" : "85347" }        , { "text" : "Orange Regional Medical Center - Horton Campus", "value" : "85444" }        , { "text" : "Oregon Health & Science University (OHSU)", "value" : "42815" }        , { "text" : "Orlando Regional Medical Center/M. D. Anderson Cancer Center, Orlando", "value" : "7124" }        , { "text" : "OSF Saint Francis Medical Center", "value" : "6644" }        , { "text" : "Oslo universitetssykehus, Aker", "value" : "80664" }        , { "text" : "Ospedale Careggi", "value" : "86659" }        , { "text" : "Ospedale Casa Sollievo Della Sofferenza", "value" : "86677" }        , { "text" : "Ospedale Cisanello Pisa", "value" : "61868" }        , { "text" : "Ospedale Civile San Matteo degli Infermi", "value" : "43246" }        , { "text" : "Ospedale della Misericordia", "value" : "6554" }        , { "text" : "Ospedale Di Aosta Umberto Parini", "value" : "61273" }        , { "text" : "Ospedale Maggiore Milano", "value" : "86644" }        , { "text" : "Ospedale Morgagni Pierantoni", "value" : "61282" }        , { "text" : "Ospedale Niguarda Ca'Granda", "value" : "61291" }        , { "text" : "Ospedale Policlinico Giambattista Rossi Di Borgo Roma", "value" : "61303" }        , { "text" : "Ospedale S. Giuseppe", "value" : "86653" }        , { "text" : "Ospedale San Bassiano", "value" : "86656" }        , { "text" : "Ospedale San Francesco", "value" : "86641" }        , { "text" : "Ospedale San Luigi Gonzaga", "value" : "86668" }        , { "text" : "Ospedale San Luigi Sacco", "value" : "86647" }        , { "text" : "Ospedale San Paolo", "value" : "61294" }        , { "text" : "Ospedale San Raffaele", "value" : "43240" }        , { "text" : "Our Lady of Lourdes Medical Center", "value" : "41649" }        , { "text" : "Our Lady of Lourdes Memorial Hospital", "value" : "85447" }        , { "text" : "Overlook Hospital", "value" : "92436" }        , { "text" : "Owensboro Mercy Health System-Parrish Ave Campus", "value" : "85391" }        , { "text" : "Oxford Radcliff Trust", "value" : "85594" }        , { "text" : "Palmetto General Hospital", "value" : "85350" }        , { "text" : "Palmetto Health Richland", "value" : "53495" }        , { "text" : "Palo Alto Medical Foundation", "value" : "6833" }        , { "text" : "Palomar Medical Center", "value" : "53447" }        , { "text" : "Paoli Memorial Hospital", "value" : "72571" }        , { "text" : "Paradise Valley Hospital", "value" : "85196" }        , { "text" : "Park Nicollet Methodist Hospital", "value" : "58139" }        , { "text" : "Parkland Medical Center", "value" : "69055" }        , { "text" : "Parkridge Medical Center", "value" : "6500" }        , { "text" : "Parkview Hospital", "value" : "6902" }        , { "text" : "Peninsula Regional Medical Center", "value" : "55270" }        , { "text" : "Penn State Milton S. Hershey Medical Center", "value" : "85513" }        , { "text" : "Penn-Presbyterian Medical Center", "value" : "7091" }        , { "text" : "Pennsylvania Hospital", "value" : "58240" }        , { "text" : "Penrose-St. Francis Health Center", "value" : "50914" }        , { "text" : "Peoria Surgical Group", "value" : "6398" }        , { "text" : "Phoenixville Hospital", "value" : "41419" }        , { "text" : "Physicians Regional Medical Center (Naples Campus)", "value" : "51924" }        , { "text" : "Piedmont Fayette Hospital", "value" : "92439" }        , { "text" : "Piedmont Hospital", "value" : "92430" }        , { "text" : "Pinnacle Health System", "value" : "69293" }        , { "text" : "PinnacleHealth, Harrisburg Campus", "value" : "11576" }        , { "text" : "Pioneer Valley Hospital", "value" : "69437" }        , { "text" : "Pirkanmaan Sairaanhoitopiirin Kuntayhtyma", "value" : "77821" }        , { "text" : "Pirogovska Hospital", "value" : "86456" }        , { "text" : "Pitt County Memorial Hospital", "value" : "43567" }        , { "text" : "Pitt County Memorial Hospital", "value" : "6887" }        , { "text" : "Policlinica Gipuzkoa", "value" : "87936" }        , { "text" : "Policlinico San Matteo", "value" : "43243" }        , { "text" : "Polyclinic Hospital", "value" : "86443" }        , { "text" : "Polyclinique de Courlancy", "value" : "42806" }        , { "text" : "Pomona Valley Hospital Medical Center", "value" : "85205" }        , { "text" : "Porter Adventist Hospital", "value" : "6956" }        , { "text" : "Porter Valparaiso Hospital Campus", "value" : "65904" }        , { "text" : "Potomac Hospital", "value" : "58181" }        , { "text" : "Poudre Valley Hospital", "value" : "6959" }        , { "text" : "Presbyterian Hospital", "value" : "6905" }        , { "text" : "Presbyterian Hospital Huntersville", "value" : "85462" }        , { "text" : "Presbyterian Hospital Matthews", "value" : "85465" }        , { "text" : "Presbyterian Hospital of Dallas", "value" : "85533" }        , { "text" : "Presbyterian/St. Luke's Medical Center", "value" : "6515" }        , { "text" : "Presidio Ospedaliero della Misericordia", "value" : "43234" }        , { "text" : "Presidio Ospedaliero le Molinette", "value" : "6533" }        , { "text" : "Presidio Ospedliero di Camposampiero", "value" : "43225" }        , { "text" : "Prince Court Medical Centre", "value" : "55369" }        , { "text" : "Princeton Baptist Medical Center", "value" : "65784" }        , { "text" : "Prosper Hospital Gemeinnutzige Krankenhausgesellschaft mbH", "value" : "92442" }        , { "text" : "Provena St. Joseph Medical Center", "value" : "58120" }        , { "text" : "Providence Alaska Medical Center", "value" : "7043" }        , { "text" : "Providence General Medical Center", "value" : "69440" }        , { "text" : "Providence Hospital", "value" : "51930" }        , { "text" : "Providence Medford Medical Center", "value" : "51947" }        , { "text" : "Providence Memorial Hospital", "value" : "55321" }        , { "text" : "Providence Portland Medical Center", "value" : "69410" }        , { "text" : "Providence St. Joseph Medical Center", "value" : "11630" }        , { "text" : "Providence St. Vincent Medical Center", "value" : "6416" }        , { "text" : "Public Hospital", "value" : "85079" }        , { "text" : "Queen Mary Hospital", "value" : "61254" }        , { "text" : "Queen of the Valley Medical Center", "value" : "6524" }        , { "text" : "Radiumhospital HF", "value" : "52706" }        , { "text" : "Redlands Community Hospital", "value" : "71822" }        , { "text" : "Regional Clinical Hospital No. 1 of Sverdlovsk Region", "value" : "62327" }        , { "text" : "Regions Hospital", "value" : "42767" }        , { "text" : "Reich SA", "value" : "92448" }        , { "text" : "Reid Hospital", "value" : "81794" }        , { "text" : "Renown Regional Medical Center", "value" : "58234" }        , { "text" : "Reston Hospital Center", "value" : "80880" }        , { "text" : "Resurrection Medical Center", "value" : "55249" }        , { "text" : "Rex Hospital", "value" : "53477" }        , { "text" : "Rigshospitalet", "value" : "85109" }        , { "text" : "River Oaks Health System", "value" : "80815" }        , { "text" : "Riverside Community Hospital", "value" : "69311" }        , { "text" : "Riverside Medical Center", "value" : "6857" }        , { "text" : "Riverside Methodist Hospital", "value" : "7163" }        , { "text" : "Riverside Regional Medical Center", "value" : "7073" }        , { "text" : "Riverview Regional Medical Center", "value" : "65778" }        , { "text" : "Robert Wood Johnson University Hospital", "value" : "6446" }        , { "text" : "Rochester General Hospital", "value" : "6818" }        , { "text" : "Rochester General Hospital", "value" : "7022" }        , { "text" : "Rockford Memorial Hospital", "value" : "55252" }        , { "text" : "Rome American Hospital", "value" : "86674" }        , { "text" : "Roper Hospital", "value" : "53492" }        , { "text" : "Rose Medical Center", "value" : "58102" }        , { "text" : "Roswell Park Cancer Institute", "value" : "6845" }        , { "text" : "Royal Adelaide Hospital", "value" : "43789" }        , { "text" : "Royal Alexandra Hospital", "value" : "55357" }        , { "text" : "Royal Berkshire NHS Foundation Trust", "value" : "68379" }        , { "text" : "Royal Brisbane and Women's Hospital", "value" : "80720" }        , { "text" : "Royal Marsden Hospital", "value" : "42812" }        , { "text" : "Ruprecht-Karls-Universit&auml;t Heidelberg", "value" : "6623" }        , { "text" : "Ruprecht-Karls-UniversitSt Heidelberg", "value" : "43303" }        , { "text" : "Rush Foundation Hospital", "value" : "71804" }        , { "text" : "Rush University Medical Center", "value" : "51927" }        , { "text" : "Sacred Heart Hospital-Eau Claire", "value" : "42794" }        , { "text" : "Sacred Heart Medical Center", "value" : "85492" }        , { "text" : "Sacred Heart Medical Center", "value" : "6428" }        , { "text" : "Sahlgrenska Universitetssjukhuset", "value" : "80670" }        , { "text" : "Sahlgrenska Universityhospital", "value" : "85579" }        , { "text" : "Saint Agnes Medical Center", "value" : "43051" }        , { "text" : "Saint Alphonsus Regional Medical Center", "value" : "43075" }        , { "text" : "Saint Barnabas Medical Center", "value" : "53486" }        , { "text" : "Saint Clare's Hospital-Denville", "value" : "42773" }        , { "text" : "Saint Francis Medical Center", "value" : "43324" }        , { "text" : "Saint Francis Medical Center", "value" : "65770" }        , { "text" : "Saint John's Hospital & Health Center", "value" : "51956" }        , { "text" : "Saint Joseph's Hospital of Atlanta", "value" : "43072" }        , { "text" : "Saint Margaret Mercy", "value" : "92451" }        , { "text" : "Saint Mary's", "value" : "65883" }        , { "text" : "Saint Mary's Health Care", "value" : "42761" }        , { "text" : "Saint Mary's Medical Center", "value" : "43891" }        , { "text" : "Saint Vincent Hospital at Worcester Medical Center", "value" : "43669" }        , { "text" : "Salem Hospital", "value" : "58169" }        , { "text" : "Salina Regional Health Center", "value" : "85379" }        , { "text" : "Salinas Valley Memorial Healthcare Systems", "value" : "69317" }        , { "text" : "Salt Lake Regional Medical Center", "value" : "6677" }        , { "text" : "Samsung Medical Center", "value" : "62641" }        , { "text" : "San Ramon Regional Medical Center", "value" : "6374" }        , { "text" : "Sanford USD Medical Center", "value" : "6842" }        , { "text" : "Santa Barbara Cottage Hospital", "value" : "7208" }        , { "text" : "Sarasota Memorial Hospital", "value" : "11612" }        , { "text" : "Saratoga Hospital", "value" : "51915" }        , { "text" : "Sarawak General Hospital", "value" : "61861" }        , { "text" : "SAS Clinique des Cedres", "value" : "85597" }        , { "text" : "Scott and White Memorial Hospital", "value" : "7010" }        , { "text" : "Scottsdale Healthcare - Shea Campus", "value" : "6365" }        , { "text" : "Scottsdale Healthcare Thompson Peak", "value" : "87322" }        , { "text" : "Scripps Hospital La Jolla", "value" : "83793" }        , { "text" : "Scripps Mercy Hospital", "value" : "53441" }        , { "text" : "Sentara Norfolk General Hospital", "value" : "6851" }        , { "text" : "Seoul Municipal Borame Hospital", "value" : "62632" }        , { "text" : "Seoul National University Bundang Hospital", "value" : "62333" }        , { "text" : "Seoul National University Hospital", "value" : "55366" }        , { "text" : "Sequoia Hospital", "value" : "61987" }        , { "text" : "Seton Medical Center", "value" : "69314" }        , { "text" : "Seton Medical Center Williamson", "value" : "85536" }        , { "text" : "Shands at the University of Florida", "value" : "42749" }        , { "text" : "Shands Jacksonville", "value" : "69335" }        , { "text" : "Sharp Grossmont Hospital", "value" : "65871" }        , { "text" : "Sharp Mary Birch Hospital for Women", "value" : "85208" }        , { "text" : "Sharp Memorial Hospital", "value" : "6878" }        , { "text" : "Shawnee Mission Medical Center", "value" : "6407" }        , { "text" : "Sherman Hospital", "value" : "58123" }        , { "text" : "Sibley Memorial Hospital", "value" : "53450" }        , { "text" : "Sierra Vista Regional Medical Center", "value" : "92454" }        , { "text" : "Siloah St. Trudpert Hospital", "value" : "83439" }        , { "text" : "Sinai Hospital of Baltimore", "value" : "85414" }        , { "text" : "Singapore General Hospital", "value" : "61849" }        , { "text" : "Singing River Health System", "value" : "65798" }        , { "text" : "Sir Mortimer B. Davis - Jewish General Hospital", "value" : "58729" }        , { "text" : "Siriraj Hospital Mahidol University", "value" : "53428" }        , { "text" : "Sjukhuset i Varberg", "value" : "86601" }        , { "text" : "Sky Ridge Medical Center", "value" : "42733" }        , { "text" : "SLK Kliniken Heilbronn GmbH", "value" : "85603" }        , { "text" : "South Miami Hospital", "value" : "54433" }        , { "text" : "Southeast Alabama Medical Center", "value" : "11691" }        , { "text" : "Southeast Missouri Hospital", "value" : "50929" }        , { "text" : "Southern Arizona VA Healthcare System", "value" : "69305" }        , { "text" : "Southern Regional Health System", "value" : "62005" }        , { "text" : "Southmead Hospital", "value" : "68376" }        , { "text" : "Southwest General Health Center", "value" : "37902" }        , { "text" : "Southwest General Hospital", "value" : "85539" }        , { "text" : "Southwest Washington Medical Center,", "value" : "62136" }        , { "text" : "Sparks Regional Medical Center", "value" : "55214" }        , { "text" : "Sparrow Health System", "value" : "6938" }        , { "text" : "Spartanburg Regional Medical Center", "value" : "42782" }        , { "text" : "Spectrum Health-Butterworth Campus", "value" : "11603" }        , { "text" : "Spedali Civili di Brescia", "value" : "86650" }        , { "text" : "Springfield Hospital", "value" : "11517" }        , { "text" : "Springhill Memorial Hospital", "value" : "85193" }        , { "text" : "St George's Healthcare", "value" : "66045" }        , { "text" : "St. Agnes Medical Center", "value" : "6371" }        , { "text" : "St. Alexius Medical Center", "value" : "71866" }        , { "text" : "St. Alphonsus Regional Medical Center", "value" : "6395" }        , { "text" : "St. Anne's University Hospital Brno", "value" : "37921" }        , { "text" : "St. Anthony Memorial Health Centers", "value" : "92457" }        , { "text" : "St. Anthony's Hospital", "value" : "58111" }        , { "text" : "St. Antonius-Hospital Gronau GmbH", "value" : "6614" }        , { "text" : "St. Augustinus", "value" : "42800" }        , { "text" : "St. Bernard's Regional Medical Center", "value" : "71851" }        , { "text" : "St. Cloud Hospital", "value" : "7058" }        , { "text" : "St. David's North Austin Medical Center", "value" : "6860" }        , { "text" : "St. Dominic-Jackson Memorial Hospital", "value" : "50932" }        , { "text" : "St. Elizabeth Health Center", "value" : "55291" }        , { "text" : "St. Elizabeth Medical Center", "value" : "92460" }        , { "text" : "St. Elizabeth Medical Center-South", "value" : "85394" }        , { "text" : "St. Elizabeth Regional Medical Center", "value" : "53480" }        , { "text" : "St. Elizabeth's Medical Center of Boston", "value" : "71878" }        , { "text" : "St. Francis Health Center", "value" : "11685" }        , { "text" : "St. Francis Hospital", "value" : "85489" }        , { "text" : "St. Francis Hospital", "value" : "42740" }        , { "text" : "St. Francis Hospital", "value" : "7160" }        , { "text" : "St. Francis Hospital - Beech Grove", "value" : "41501" }        , { "text" : "St. Francis Hospital - Wilmington", "value" : "41878" }        , { "text" : "St. James University Hospital", "value" : "56540" }        , { "text" : "St. John Health System", "value" : "7178" }        , { "text" : "St. John Hospital & Medical Center - Detroit", "value" : "6935" }        , { "text" : "St. John of God Hospital Subiaco", "value" : "58807" }        , { "text" : "St. John's Hospital", "value" : "6806" }        , { "text" : "St. John's Hospital", "value" : "6854" }        , { "text" : "St. John's Mercy Medical Center", "value" : "6737" }        , { "text" : "St. John's Regional Health Center", "value" : "69380" }        , { "text" : "St. Joseph Hospital", "value" : "43348" }        , { "text" : "St. Joseph Hospital", "value" : "53519" }        , { "text" : "St. Joseph Hospital", "value" : "65862" }        , { "text" : "St. Joseph Medical Center", "value" : "43579" }        , { "text" : "St. Joseph Medical Center", "value" : "55327" }        , { "text" : "St. Joseph Medical Center - Towson", "value" : "6899" }        , { "text" : "St. Joseph Mercy Hospital", "value" : "42229" }        , { "text" : "St. Joseph Mercy-Oakland", "value" : "65907" }        , { "text" : "St. Joseph's Hospital", "value" : "43069" }        , { "text" : "St. Joseph's Hospital", "value" : "43777" }        , { "text" : "St. Joseph's Hospital", "value" : "41624" }        , { "text" : "St. Joseph's Hospital", "value" : "52920" }        , { "text" : "St. Joseph's Hospital - Atlanta", "value" : "6392" }        , { "text" : "St. Joseph's Hospital - Marshfield", "value" : "37869" }        , { "text" : "St. Joseph's Hospital - New York", "value" : "7097" }        , { "text" : "St. Joseph's Hospital & Medical Center", "value" : "61975" }        , { "text" : "St. Joseph's Medical Center", "value" : "69371" }        , { "text" : "St. Joseph's/Candler", "value" : "55243" }        , { "text" : "St. Jude Medical Center", "value" : "85211" }        , { "text" : "St. Lucie Medical Center", "value" : "75189" }        , { "text" : "St. Luke's Baptist Hospital", "value" : "43573" }        , { "text" : "St. Luke's Cornwall Hospital", "value" : "53489" }        , { "text" : "St. Luke's Episcopal Hospital", "value" : "6467" }        , { "text" : "St. Luke's Hospital", "value" : "58145" }        , { "text" : "St. Luke's Hospital", "value" : "43828" }        , { "text" : "St. Luke's Hospital", "value" : "43648" }        , { "text" : "St. Luke's Hospital", "value" : "7148" }        , { "text" : "St. Luke's Hospital", "value" : "58160" }        , { "text" : "St. Luke's Hospital - Bethlehem", "value" : "6419" }        , { "text" : "St. Luke's Hospital - Jacksonville", "value" : "6968" }        , { "text" : "St. Luke's Hospital - Lee's Summit", "value" : "71854" }        , { "text" : "St. Luke's Hospital of Kansas City", "value" : "6662" }        , { "text" : "St. Luke's Medical Center, Phoenix", "value" : "6647" }        , { "text" : "St. Luke's Regional Medical Center", "value" : "71825" }        , { "text" : "St. Luke's The Woodlands Hospital", "value" : "68661" }        , { "text" : "St. Luke's-Roosevelt Hospital Center", "value" : "6491" }        , { "text" : "St. Mark's Hospital", "value" : "87221" }        , { "text" : "St. Mary Medical Center", "value" : "65874" }        , { "text" : "St. Mary Medical Center", "value" : "92463" }        , { "text" : "St. Mary's Healthcare System", "value" : "92466" }        , { "text" : "St. Mary's Hospital", "value" : "55330" }        , { "text" : "St. Mary's Hospital", "value" : "52923" }        , { "text" : "St. Mary's Hospital", "value" : "6530" }        , { "text" : "St. Mary's Hospital", "value" : "43210" }        , { "text" : "St. Mary's Hospital - Richmond", "value" : "41667" }        , { "text" : "St. Mary's Hospital & Regional Medical Center", "value" : "50917" }        , { "text" : "St. Mary's Medical Center", "value" : "6812" }        , { "text" : "St. Mary's Medical Center", "value" : "37914" }        , { "text" : "St. Mary's Mercy Medical Center", "value" : "69368" }        , { "text" : "St. Mary's of Michigan", "value" : "7211" }        , { "text" : "St. Michael's Hospital", "value" : "73312" }        , { "text" : "St. Michael's Medical Center", "value" : "41447" }        , { "text" : "St. Patrick Hospital", "value" : "69383" }        , { "text" : "St. Peter's Hospital", "value" : "6824" }        , { "text" : "St. Petersburg General Hospital", "value" : "65792" }        , { "text" : "St. Rose Dominican Hospitals - Siena Campus", "value" : "55276" }        , { "text" : "St. Tammany Parish Hospital", "value" : "55264" }        , { "text" : "St. Vincent Health Center", "value" : "92469" }        , { "text" : "St. Vincent Health System", "value" : "55217" }        , { "text" : "St. Vincent Hospital", "value" : "85438" }        , { "text" : "St. Vincent Hospital at Worcester Medical Center", "value" : "6989" }        , { "text" : "St. Vincent Hospital-Green Bay", "value" : "42797" }        , { "text" : "St. Vincent Mercy Medical Center", "value" : "6689" }        , { "text" : "St. Vincent's Hospital", "value" : "43510" }        , { "text" : "St. Vincent's Hospital", "value" : "43039" }        , { "text" : "St. Vincent's Hospital - Birmingham", "value" : "6359" }        , { "text" : "St. Vincent's Hospital - Indianpolis", "value" : "6830" }        , { "text" : "St. Vincent's Private Hospital", "value" : "53278" }        , { "text" : "St. Zdislava Hospital", "value" : "62322" }        , { "text" : "Stamford Hospital", "value" : "65853" }        , { "text" : "Stanford Hospital & Clinics", "value" : "6797" }        , { "text" : "State University of New York - Upstate Medical University", "value" : "6821" }        , { "text" : "Staten Island University Hospital-North", "value" : "85450" }        , { "text" : "Stavanger Universitetssjukehus Helse Stavanger", "value" : "92472" }        , { "text" : "Stony Brook University Medical Center", "value" : "55279" }        , { "text" : "Suburban Hospital", "value" : "69362" }        , { "text" : "Summa Health System", "value" : "85474" }        , { "text" : "Summerlin Hospital Medical Center", "value" : "71828" }        , { "text" : "Sunrise Hospital and Medical Center", "value" : "6497" }        , { "text" : "SUNY Downstate Medical Center", "value" : "41631" }        , { "text" : "Sutter General Hospital", "value" : "6965" }        , { "text" : "Sutter Memorial Hospital", "value" : "6983" }        , { "text" : "Swedish Covenant Hospital", "value" : "91415" }        , { "text" : "Swedish Medical Center", "value" : "55226" }        , { "text" : "Swedish Medical Center/First Hill", "value" : "7067" }        , { "text" : "Sykehuset Telemark HF", "value" : "52709" }        , { "text" : "Tacoma General Hospital", "value" : "7100" }        , { "text" : "Taichung Veterans General Hospital", "value" : "60505" }        , { "text" : "Tallahassee Memorial Hospital", "value" : "7133" }        , { "text" : "Tampa General Hospital", "value" : "65773" }        , { "text" : "The Children's Hospital", "value" : "6638" }        , { "text" : "The Chinese University of Hong Kong, Prince of Wales Hospital", "value" : "61257" }        , { "text" : "The Christie NHS Foundation Trust", "value" : "68373" }        , { "text" : "The Cleveland Clinic Foundation", "value" : "6320" }        , { "text" : "The General Hospital of the Second Artillery Army", "value" : "78432" }        , { "text" : "The Hospital at Westlake Medical Center", "value" : "11562" }        , { "text" : "The London Clinic", "value" : "23729" }        , { "text" : "The Medical Center", "value" : "85385" }        , { "text" : "The Medical Center of Aurora", "value" : "65877" }        , { "text" : "The Methodist Hospital", "value" : "6470" }        , { "text" : "The Miriam Hospital", "value" : "42779" }        , { "text" : "The Mount Sinai Medical Center", "value" : "6479" }        , { "text" : "The Princess Grace Hospital", "value" : "23732" }        , { "text" : "The Queen's Medical Center", "value" : "42752" }        , { "text" : "The Reading Hospital and Medical Center", "value" : "53534" }        , { "text" : "The Toledo Hospital", "value" : "58163" }        , { "text" : "The University Hospital", "value" : "6719" }        , { "text" : "The University of Tennessee Medical Center", "value" : "55309" }        , { "text" : "The University of Texas Medical Branch at Galveston", "value" : "6473" }        , { "text" : "The Urology Group", "value" : "6773" }        , { "text" : "The Valley Hospital", "value" : "6449" }        , { "text" : "The Wisconsin Heart Hospital", "value" : "58184" }        , { "text" : "Theda Clark Medical Center", "value" : "63693" }        , { "text" : "Thibodaux Regional Medical Center", "value" : "55267" }        , { "text" : "Thomas Jefferson University Hospital", "value" : "7166" }        , { "text" : "Thorek Memorial Hospital", "value" : "55255" }        , { "text" : "Tokyo Medical University Hospital", "value" : "56516" }        , { "text" : "Toronto General Hospital", "value" : "65910" }        , { "text" : "Torrance Memorial Medical Center", "value" : "37866" }        , { "text" : "Town & Country Hospital", "value" : "6866" }        , { "text" : "Trident Medical Center", "value" : "69419" }        , { "text" : "Trinitas Hospital-Williamson Street Campus", "value" : "71881" }        , { "text" : "Trinity Medical Center", "value" : "11597" }        , { "text" : "Trinity Medical Center-West Campus", "value" : "69347" }        , { "text" : "Trinity Mother Frances Hospitals and Clinics", "value" : "6791" }        , { "text" : "Tripler Army Medical Center", "value" : "71836" }        , { "text" : "Tri-Service General Hospital", "value" : "60499" }        , { "text" : "Tufts Medical Center (New England Medical Center)", "value" : "71884" }        , { "text" : "Tulane University Hospital and Clinic", "value" : "6503" }        , { "text" : "UC Davis Medical Center", "value" : "6788" }        , { "text" : "UCI Medical Center", "value" : "6377" }        , { "text" : "UCLA Medical Center", "value" : "6770" }        , { "text" : "UCSD - Hillcrest Hospital", "value" : "42727" }        , { "text" : "UCSD - Thornton Hospital", "value" : "42730" }        , { "text" : "UCSF/Mt. Zion Comprehensive Cancer Center", "value" : "7085" }        , { "text" : "UMAS, Malmo Universitetssjukhus", "value" : "85576" }        , { "text" : "UMRANIYE EGITIM VE ARASTIRMA HASTANESI", "value" : "66012" }        , { "text" : "Union Hospital", "value" : "53459" }        , { "text" : "United Hospital", "value" : "42770" }        , { "text" : "United Hospital System", "value" : "41479" }        , { "text" : "Universit&auml;tsklinikum Hamburg-Eppendorf", "value" : "7169" }        , { "text" : "UniversitaetsSpital Zuerich", "value" : "6626" }        , { "text" : "UniversitaetsSpital Zuerich", "value" : "43306" }        , { "text" : "Universitair Medisch Centrum", "value" : "6590" }        , { "text" : "Universitair Medisch Centrum", "value" : "43270" }        , { "text" : "Universitair Medisch Centrum St Radboud Nijmegen", "value" : "61905" }        , { "text" : "Universitair Ziekenhuis", "value" : "6587" }        , { "text" : "Universitair Ziekenhuis", "value" : "43267" }        , { "text" : "Universitatsklinik fur Urologie Tubingen", "value" : "75277" }        , { "text" : "Universitatsklinikum des Saarlandes", "value" : "23711" }        , { "text" : "Universitatsklinikum Hamburg-Eppendorf", "value" : "43849" }        , { "text" : "Universitatsspital Zurich", "value" : "85582" }        , { "text" : "University College Hospital", "value" : "92475" }        , { "text" : "University Community Hospital of Carrollwood", "value" : "85353" }        , { "text" : "University Hospital", "value" : "65810" }        , { "text" : "University Hospitals", "value" : "62115" }        , { "text" : "University Medical Center", "value" : "69374" }        , { "text" : "University Medical Center", "value" : "65865" }        , { "text" : "University of Alabama Hospital", "value" : "6362" }        , { "text" : "University of Alberta Hospital", "value" : "58732" }        , { "text" : "University of Arkansas Medical Center", "value" : "55220" }        , { "text" : "University of Chicago Medical Center", "value" : "54601" }        , { "text" : "University of Cincinnati Medical Center", "value" : "6695" }        , { "text" : "University of Colorado Hospital", "value" : "85229" }        , { "text" : "University of Illinois Medical Center at Chicago", "value" : "6656" }        , { "text" : "University of Iowa Hospital and Clinics", "value" : "6659" }        , { "text" : "University of Kansas Hospital (KUMED)", "value" : "7016" }        , { "text" : "University of Kentucky, Chandler Hospital", "value" : "6743" }        , { "text" : "University of Louisville Hospital", "value" : "85397" }        , { "text" : "University of Maryland Medical Center", "value" : "41643" }        , { "text" : "University of Massachusetts Memorial Medical Center", "value" : "37837" }        , { "text" : "University of Medicine and Dentistry of NJ", "value" : "73391" }        , { "text" : "University of Miami", "value" : "74123" }        , { "text" : "University of Michigan Health System", "value" : "6437" }        , { "text" : "University of Minnesota Medical Center, Fairview", "value" : "6680" }        , { "text" : "University of Mississippi Medical Center", "value" : "92421" }        , { "text" : "University of Nebraska Medical Center", "value" : "6443" }        , { "text" : "University of New Mexico", "value" : "69449" }        , { "text" : "University of North Carolina", "value" : "6926" }        , { "text" : "University of Pittsburgh Medical Center", "value" : "6869" }        , { "text" : "University of Rochester Medical Center--Strong Memorial", "value" : "6758" }        , { "text" : "University of Texas M.D. Anderson Cancer Center", "value" : "37945" }        , { "text" : "University of Toledo Medical Center", "value" : "55294" }        , { "text" : "University of Utah Hospital", "value" : "7214" }        , { "text" : "University of Virginia Health System", "value" : "6707" }        , { "text" : "University of Virginia Health System Urology Clinics", "value" : "6710" }        , { "text" : "University of Washington Medical Center", "value" : "6740" }        , { "text" : "University of Wisconsin Madison", "value" : "11559" }        , { "text" : "University Physicians Healthcare Hospital at Kino Campus", "value" : "6962" }        , { "text" : "UroClinic", "value" : "42809" }        , { "text" : "Urology Associates of North Texas", "value" : "43474" }        , { "text" : "Urology Specialists of Nevada", "value" : "6761" }        , { "text" : "USC University Hospital", "value" : "6383" }        , { "text" : "USMD Hospital at Arlington", "value" : "6794" }        , { "text" : "UT Southwestern (Zale Lipshy)", "value" : "7184" }        , { "text" : "UZ Gasthuiberg - Leuven", "value" : "85103" }        , { "text" : "VA Boston Healthcare System", "value" : "85417" }        , { "text" : "VA Connecticut Healthcare System-West Haven Campus", "value" : "58108" }        , { "text" : "VA Houston Medical Center", "value" : "41688" }        , { "text" : "VA Long Beach Healthcare System", "value" : "85214" }        , { "text" : "VA Medical Center", "value" : "85477" }        , { "text" : "VA Medical Center - Durham", "value" : "71887" }        , { "text" : "VA Medical San Diego Healthcare Systems", "value" : "69323" }        , { "text" : "VA Palo Alto Healthcare System", "value" : "41652" }        , { "text" : "VA Pittsburgh Healthcare System", "value" : "6872" }        , { "text" : "VA San Francisco Medical Center", "value" : "41664" }        , { "text" : "Valley Baptist Medical Center Harlingen", "value" : "65837" }        , { "text" : "Valley Medical Center", "value" : "85548" }        , { "text" : "Valley Medical Center", "value" : "85551" }        , { "text" : "Vancouver General Hospital", "value" : "58713" }        , { "text" : "Vanderbilt University Medical Center", "value" : "6776" }        , { "text" : "Vassar Brothers Medical Center", "value" : "58154" }        , { "text" : "Via Christi Regional Medical Center", "value" : "55261" }        , { "text" : "Virginia Commonwealth University Medical Center", "value" : "62130" }        , { "text" : "Virginia Hospital Center", "value" : "37776" }        , { "text" : "Virginia Mason Medical Center", "value" : "6452" }        , { "text" : "Virtua Memorial Hospital", "value" : "85435" }        , { "text" : "Visnevski Hospital", "value" : "86459" }        , { "text" : "VU Amsterdam Netherlands", "value" : "11585" }        , { "text" : "Wadley Regional Medical Center", "value" : "82797" }        , { "text" : "Wake Forest University Baptist Medical Center", "value" : "6785" }        , { "text" : "WakeMed Cary Hospital", "value" : "55285" }        , { "text" : "WakeMed Health & Hospitals", "value" : "6884" }        , { "text" : "Walter O. Boswell Memorial Hospital", "value" : "6848" }        , { "text" : "Walter Reed Army Medical Center", "value" : "6386" }        , { "text" : "Washington Hospital", "value" : "6755" }        , { "text" : "Washington Hospital Center", "value" : "37893" }        , { "text" : "Waukesha Memorial Hospital", "value" : "7064" }        , { "text" : "Wayne Memorial Hospital", "value" : "85468" }        , { "text" : "Weiss Memorial Hospital", "value" : "7250" }        , { "text" : "WellStar Kennestone Hospital", "value" : "55240" }        , { "text" : "Wenatchee Valley Medical Center", "value" : "92478" }        , { "text" : "Wentworth Douglass", "value" : "11621" }        , { "text" : "Wesley Long Community Hospital", "value" : "37890" }        , { "text" : "Wesley Medical Center", "value" : "53474" }        , { "text" : "Wesley Medical Center", "value" : "76410" }        , { "text" : "West Allis Memorial Hospital", "value" : "62142" }        , { "text" : "West Boca Medical Center", "value" : "42743" }        , { "text" : "West Florida Hospital", "value" : "85356" }        , { "text" : "West Jefferson Medical Center", "value" : "7082" }        , { "text" : "West Marion Community Hospital", "value" : "6509" }        , { "text" : "West Valley Hospital", "value" : "7145" }        , { "text" : "West Virginia University", "value" : "11606" }        , { "text" : "Westchester County Medical Center(New York Medical College)", "value" : "6494" }        , { "text" : "Western Baptist Hospital", "value" : "69356" }        , { "text" : "Western Pennsylvania Hospital, The", "value" : "58175" }        , { "text" : "Westside Multispecialty Surgery Center", "value" : "85217" }        , { "text" : "Westside Regional Medical Center", "value" : "50926" }        , { "text" : "Wexham Park Hospital", "value" : "66042" }        , { "text" : "White Cross Hospital", "value" : "86620" }        , { "text" : "White Plains Hospital Center", "value" : "11529" }        , { "text" : "White River Medical Center", "value" : "65751" }        , { "text" : "Wilkes Barre General Hospital", "value" : "85516" }        , { "text" : "William Beaumont Hospital", "value" : "6701" }        , { "text" : "William W. Backus Hospital", "value" : "69332" }        , { "text" : "Williamson Medical Center", "value" : "7004" }        , { "text" : "Willis-Knighton Medical Center", "value" : "85400" }        , { "text" : "Winchester Hospital", "value" : "55273" }        , { "text" : "Winnie Palmer Hospital for Women", "value" : "61999" }        , { "text" : "Winthrop University Hospital", "value" : "85453" }        , { "text" : "Woman's Hospital", "value" : "58127" }        , { "text" : "Wyoming Medical Center", "value" : "69446" }        , { "text" : "Yale New Haven Hospital", "value" : "41637" }        , { "text" : "Yondong Severance Hospital", "value" : "62635" }        , { "text" : "Yonsei Univ. Medical Center Shinchon Severance Hospital", "value" : "62638" }        , { "text" : "York Hospital", "value" : "69416" }] };// -----------------------------------------------------------------------------------------// --- Function Library// -----------------------------------------------------------------------------------------function addOnloadEvent(fnc){  if ( typeof window.addEventListener != "undefined" )    window.addEventListener( "load", fnc, false );  else if ( typeof window.attachEvent != "undefined" ) {    window.attachEvent( "onload", fnc );  }  else {    if ( window.onload != null ) {      var oldOnload = window.onload;      window.onload = function ( e ) {        oldOnload( e );        window[fnc]();      };    }    else       window.onload = fnc;  }}addOnloadEvent(init);function init() {  // Get the list of stories  var stories = patientStories.stories.slice();  // Populate the drop downs  PopulateConditions(stories);  PopulateProcedures(stories);  PopulateCountries(stories);  PopulateStates(stories);  if(dvstAdvancedView==true){  PopulateGenders(stories);  PopulateAgeRanges(stories);  PopulateOccupations(stories);  PopulateHospitals(stories);  }}function OnConditionChange() {  var stories = FilterConditions(patientStories.stories.slice());    stories = PopulateProcedures(stories);  stories = PopulateCountries(stories);  stories = PopulateStates(stories);  if(dvstAdvancedView==true){  stories = PopulateGenders(stories);  stories = PopulateAgeRanges(stories);  stories = PopulateOccupations(stories);  stories = PopulateHospitals(stories);  }}function OnProcedureChange() {  var stories = FilterProcedures(patientStories.stories.slice());  stories = PopulateConditions(stories);    stories = PopulateCountries(stories);  stories = PopulateStates(stories);  if(dvstAdvancedView==true){  stories = PopulateGenders(stories);  stories = PopulateAgeRanges(stories);  stories = PopulateOccupations(stories);  stories = PopulateHospitals(stories);  }}function OnCountriesChange() {  var stories = FilterCountries(patientStories.stories.slice());  stories = PopulateConditions(stories);  stories = PopulateProcedures(stories);  stories = PopulateStates(stories);  if(dvstAdvancedView==true){  stories = PopulateGenders(stories);  stories = PopulateAgeRanges(stories);  stories = PopulateOccupations(stories);  stories = PopulateHospitals(stories);  }}function OnStateChange() {  var stories = FilterStates(patientStories.stories.slice());  stories = PopulateConditions(stories);  stories = PopulateProcedures(stories);  stories = PopulateCountries(stories);  if(dvstAdvancedView==true){  stories = PopulateGenders(stories);  stories = PopulateAgeRanges(stories);  stories = PopulateOccupations(stories);  stories = PopulateHospitals(stories);  }}function OnGenderChange() {  var stories = FilterGenders(patientStories.stories.slice());  stories = PopulateConditions(stories);  stories = PopulateProcedures(stories);  stories = PopulateCountries(stories);  stories = PopulateStates(stories);  stories = PopulateAgeRanges(stories);  stories = PopulateOccupations(stories);  stories = PopulateHospitals(stories);}function OnAgeRangesChange() {  var stories = FilterAgeRanges(patientStories.stories.slice());  stories = PopulateConditions(stories);  stories = PopulateProcedures(stories);  stories = PopulateCountries(stories);  stories = PopulateStates(stories);  stories = PopulateGenders(stories);  stories = PopulateOccupations(stories);  stories = PopulateHospitals(stories);}function OnOccupationsChange() {  var stories = FilterOccupations(patientStories.stories.slice());  stories = PopulateConditions(stories);  stories = PopulateProcedures(stories);  stories = PopulateCountries(stories);  stories = PopulateStates(stories);  stories = PopulateGenders(stories);  stories = PopulateAgeRanges(stories);  stories = PopulateHospitals(stories);}function OnHospitalsChange() {  var stories = FilterHospitals(patientStories.stories.slice());  stories = PopulateConditions(stories);  stories = PopulateProcedures(stories);  stories = PopulateCountries(stories);  stories = PopulateStates(stories);  stories = PopulateGenders(stories);  stories = PopulateAgeRanges(stories);  stories = PopulateOccupations(stories);}// -----------------------------------------------------------------------------------------// --- Filters// -----------------------------------------------------------------------------------------// --- Filter by Condition ---function FilterConditions(stories) {  var storyList = new Array();  var cbox = document.getElementById('conditionsComboBox');  if (cbox.selectedIndex != 0) {    var selected = cbox.options[cbox.selectedIndex].value;    for (var i=0; i<stories.length; i++) {      if (stories[i].condition == selected) {        storyList.push(stories[i]);      }    }  }  else {    storyList = stories.slice();  }  return storyList;  }// --- Filter by Procedures ---function FilterProcedures(stories) {  var storyList = new Array();  cbox = document.getElementById('proceduresComboBox');  if (cbox.selectedIndex != 0) {    var selected = cbox.options[cbox.selectedIndex].value;    for (var i=0; i<stories.length; i++) {      if (stories[i].procedure == selected) {        storyList.push(stories[i]);      }    }  }  else {    storyList = stories.slice();  }  return storyList;}// --- Filter by Countries ---function FilterCountries(stories) {  var storyList = new Array();    cbox = document.getElementById('countriesComboBox');  if (cbox.selectedIndex != 0) {    var selected = cbox.options[cbox.selectedIndex].value;    for (var i=0; i<stories.length; i++) {      if (stories[i].country == selected) {        storyList.push(stories[i]);      }    }  }  else {    storyList = stories.slice();  }  return storyList;}// --- Filter by State ---function FilterStates(stories) {  var storyList = new Array();  var cbox = document.getElementById('statesComboBox');  if (cbox.selectedIndex != 0) {    var selected = cbox.options[cbox.selectedIndex].value;    for (var i=0; i<stories.length; i++) {      if (stories[i].state == selected) {        storyList.push(stories[i]);      }    }  }  else {    storyList = stories.slice();  }  return storyList;}// --- Filter by Gender ---function FilterGenders(stories) {  var storyList = new Array();  var maleRadio = document.getElementById('maleRadio');  var femaleRadio = document.getElementById('femaleRadio');  if ( (maleRadio.checked || femaleRadio.checked) && IsGenderEnabled() == true) {    for (var i=0; i<stories.length; i++) {      if (maleRadio.checked && stories[i].gender == 'Male') {        storyList.push(stories[i]);      }      else if (femaleRadio.checked && stories[i].gender == 'Female') {        storyList.push(stories[i]);      }    }  }  else {    storyList = stories.slice();  }  return storyList;}  // --- Filter by Age Range ---function FilterAgeRanges(stories) {  var storyList = new Array();  cbox = document.getElementById('ageRangesComboBox');  if (cbox.selectedIndex != 0) {    var ages = cbox.options[cbox.selectedIndex].value.split(",");    var low = parseInt(ages[0]);    var high = parseInt(ages[1]);      for (var i=0; i<stories.length; i++) {      var age = parseInt(stories[i].age);          if ( (age >= low) && (age <= high) ) {        storyList.push(stories[i]);      }    }  }  else {    storyList = stories.slice();  }  return storyList;}  // --- Filter by Occupation ---function FilterOccupations(stories) {  var storyList = new Array();  cbox = document.getElementById('occupationsComboBox');  if (cbox.selectedIndex != 0) {    var selected = cbox.options[cbox.selectedIndex].value;    for (var i=0; i<stories.length; i++) {      if (stories[i].occupation == selected) {        storyList.push(stories[i]);      }    }  }  else {    storyList = stories.slice();  }  return storyList;}  // --- Filter by Hospital ---function FilterHospitals(stories) {  var storyList = new Array();  cbox = document.getElementById('hospitalsComboBox');  if (cbox.selectedIndex != 0) {    var selected = cbox.options[cbox.selectedIndex].value;    for (var i=0; i<stories.length; i++) {      if (stories[i].hospitalId == selected) {        storyList.push(stories[i]);      }    }  }  else {    storyList = stories.slice();  }  return storyList;}// -----------------------------------------------------------------------------------------// --- Drop down population functions// -----------------------------------------------------------------------------------------// // Enable/Disable the gender search control//function PopulateGenders(storyList) {  var maleRadio = document.getElementById('maleRadio');  var femaleRadio = document.getElementById('femaleRadio');    var foundMale = false;  var foundFemale = false;    for (var i=0; i<storyList.length; i++) {    if (storyList[i].gender == 'Male') {      foundMale = true;    }      if (storyList[i].gender == 'Female') {      foundFemale = true;    }    }    if (foundMale == false || foundFemale == false) {    EnableGenderButtons(false);  }  else {    EnableGenderButtons(true);  }    // Return the filtered list  return FilterGenders(storyList); }//// Populate the states combo box//function PopulateCountries(storyList) {  var cbox = document.getElementById('countriesComboBox');  // Get the selected item  var selected = null;  if (cbox.selectedIndex != -1) {    selected = cbox.options[cbox.selectedIndex].text;  }    // Clear the combobox  cbox.options.length = 0;    // Add an empty item to the top of the list  cbox.options[0] = new Option("", "");    for (var i=0; i<countryList.countries.length; i++) {    for (var j=0; j<storyList.length; j++) {      if (storyList[j].country == countryList.countries[i].text) {        var oOption = document.createElement('option');        oOption.value = countryList.countries[i].value;        oOption.appendChild(document.createTextNode(countryList.countries[i].text));        cbox.appendChild(oOption);        break;      }            }  }    // Set the selected item in the combo box      for (var i = 0; i<cbox.options.length; i++) {    if (cbox.options.item(i).text == selected) {      cbox.selectedIndex = i;    }  }  EnableComboBox(cbox);      // Return the filtered list  return FilterCountries(storyList); }//// Populate the states combo box//function PopulateStates(storyList) {  var cbox = document.getElementById('statesComboBox');  // Get the selected item  var selected = null;  if (cbox.selectedIndex != -1) {    selected = cbox.options[cbox.selectedIndex].text;  }    // Clear the combobox  cbox.options.length = 0;    // Add an empty item to the top of the list  cbox.options[0] = new Option("", "");    for (var i=0; i<stateList.states.length; i++) {    for (var j=0; j<storyList.length; j++) {      if (storyList[j].state == stateList.states[i].text) {        var oOption = document.createElement('option');        oOption.value = stateList.states[i].value;        oOption.appendChild(document.createTextNode(stateList.states[i].text));        cbox.appendChild(oOption);        break;      }            }  }    // Set the selected item in the combo box      for (var i = 0; i<cbox.options.length; i++) {    if (cbox.options.item(i).text == selected) {      cbox.selectedIndex = i;    }  }    EnableComboBox(cbox);    // Return the filtered list  return FilterStates(storyList); }//// Populate the age range combo box//function PopulateAgeRanges(storyList) {  var cbox = document.getElementById('ageRangesComboBox');  // Get the selected item  var selected = null;  if (cbox.selectedIndex != -1) {    selected = cbox.options[cbox.selectedIndex].text;  }    // Clear the combobox  cbox.options.length = 0;    // Add an empty item to the top of the list  cbox.options[0] = new Option("", "");    for (var i=0; i<ageRangeList.ageranges.length; i++) {    for (var j=0; j<storyList.length; j++) {      var ages = ageRangeList.ageranges[i].value.split(",");      var low = parseInt(ages[0]);      var high = parseInt(ages[1]);      var age = parseInt(storyList[j].age);      if ( (age >= low) && (age <= high) ) {        var oOption = document.createElement('option');        oOption.value = ageRangeList.ageranges[i].value;        oOption.appendChild(document.createTextNode(ageRangeList.ageranges[i].text));        cbox.appendChild(oOption);        break;      }            }  }    // Set the selected item in the combo box      for (var i = 0; i<cbox.options.length; i++) {    if (cbox.options.item(i).text == selected) {      cbox.selectedIndex = i;    }  }    EnableComboBox(cbox);      // Return the filtered list  return FilterAgeRanges(storyList); }//// Populate the occupations combo box//function PopulateOccupations(storyList) {  var cbox = document.getElementById('occupationsComboBox');  // Get the selected item  var selected = null;  if (cbox.selectedIndex != -1) {    selected = cbox.options[cbox.selectedIndex].text;  }    // Clear the combobox  cbox.options.length = 0;    // Add an empty item to the top of the list  cbox.options[0] = new Option("", "");    for (var i=0; i<occupationList.occupations.length; i++) {    for (var j=0; j<storyList.length; j++) {      if (storyList[j].occupation == occupationList.occupations[i].text) {        var oOption = document.createElement('option');        oOption.value = occupationList.occupations[i].value;        oOption.appendChild(document.createTextNode(occupationList.occupations[i].text));        cbox.appendChild(oOption);        break;      }            }  }    // Set the selected item in the combo box      for (var i = 0; i<cbox.options.length; i++) {    if (cbox.options.item(i).text == selected) {      cbox.selectedIndex = i;    }  }    EnableComboBox(cbox);      // Return the filtered list  return FilterOccupations(storyList); }//// Populate the hospitals combo box//function PopulateHospitals(storyList) {  var cbox = document.getElementById('hospitalsComboBox');  // Get the selected item  var selected = null;  if (cbox.selectedIndex != -1) {    selected = cbox.options[cbox.selectedIndex].text;  }    // Clear the combobox  cbox.options.length = 0;    // Add an empty item to the top of the list  cbox.options[0] = new Option("", "");    for (var i=0; i<hospitalList.hospitals.length; i++) {    for (var j=0; j<storyList.length; j++) {      if (storyList[j].hospitalId == hospitalList.hospitals[i].value) {        var oOption = document.createElement('option');        oOption.value = hospitalList.hospitals[i].value;        oOption.appendChild(document.createTextNode(hospitalList.hospitals[i].text));        cbox.appendChild(oOption);        break;      }            }  }    // Set the selected item in the combo box      for (var i = 0; i<cbox.options.length; i++) {    if (cbox.options.item(i).text == selected) {      cbox.selectedIndex = i;    }  }    EnableComboBox(cbox);      // Return the filtered list  return FilterHospitals(storyList); }//// Populate the conditions combo box//function PopulateConditions(storyList) {  var cbox = document.getElementById('conditionsComboBox');    var selected = null;  if (cbox.selectedIndex != -1) {    selected = cbox.options[cbox.selectedIndex].text;  }    //  // Clear the combobox  //  cbox.options.length = 0;  while (cbox.firstChild) {    cbox.removeChild(cbox.firstChild);  }    // Add an empty item to the top of the list  cbox.options[0] = new Option("", "");    if (dvstCondition == 'all') {    for (var i=0; i<conditionList.conditions.length; i++) {      var oGroup = document.createElement('optgroup');      oGroup.label = conditionList.conditions[i].label;      for (var j=0; j<conditionList.conditions[i].options.length; j++) {        for (var story=0; story<storyList.length; story++) {          if (storyList[story].condition == conditionList.conditions[i].options[j].value) {            var oOption = document.createElement('option');            oOption.value = conditionList.conditions[i].options[j].value;            oOption.appendChild(document.createTextNode(conditionList.conditions[i].options[j].text));                        // Add the option to the optiongroup            oGroup.appendChild(oOption);            break;          }        }      }            if (oGroup.childNodes.length > 0) {        // Add the optiongroup to the combobox        cbox.appendChild(oGroup);      }    }    } else {    for (var i=0; i<conditionList.conditions.length; i++) {      if (dvstCondition == conditionList.conditions[i].label.replace(/^:+|:+$/g, '')) {        for (var j=0; j<conditionList.conditions[i].options.length; j++) {          for (var story=0; story<storyList.length; story++) {            if (storyList[story].condition == conditionList.conditions[i].options[j].value) {              var oOption = document.createElement('option');              oOption.value = conditionList.conditions[i].options[j].value;              oOption.appendChild(document.createTextNode(conditionList.conditions[i].options[j].text));                            // Add the option to the optiongroup              cbox.appendChild(oOption);              break;            }          }        }      }      }  }    // Set the selected item in the combo box      for (var i = 0; i<cbox.options.length; i++) {    if (cbox.options.item(i).text == selected) {      cbox.selectedIndex = i;    }  }    EnableComboBox(cbox);     // Return the filtered list  return FilterConditions(storyList); }//// Populate the procedures combo box//function PopulateProcedures(storyList) {  var cbox = document.getElementById('proceduresComboBox');    var selected = null;  if (cbox.selectedIndex != -1) {    selected = cbox.options[cbox.selectedIndex].text;  }    // Clear the combobox  cbox.options.length = 0;  while (cbox.firstChild) {    cbox.removeChild(cbox.firstChild);  }    // Add an empty item to the top of the list  cbox.options[0] = new Option("", "");    if (dvstCondition == 'all') {    for (var i=0; i<procedureList.procedures.length; i++) {      var oGroup = document.createElement('optgroup');      oGroup.label = procedureList.procedures[i].label;      for (var j=0; j<procedureList.procedures[i].options.length; j++) {        for (var story=0; story<storyList.length; story++) {          if (storyList[story].procedure == procedureList.procedures[i].options[j].value) {            var oOption = document.createElement('option');            oOption.value = procedureList.procedures[i].options[j].value;            oOption.appendChild(document.createTextNode(procedureList.procedures[i].options[j].text));                        // Add the option to the optiongroup            oGroup.appendChild(oOption);            break;          }        }      }            if (oGroup.childNodes.length > 0) {        // Add the optiongroup to the combobox        cbox.appendChild(oGroup);      }    }  } else {    for (var i=0; i<procedureList.procedures.length; i++) {      if (dvstCondition == procedureList.procedures[i].label.replace(/^:+|:+$/g, '')) {        for (var j=0; j<procedureList.procedures[i].options.length; j++) {          for (var story=0; story<storyList.length; story++) {            if (storyList[story].procedure == procedureList.procedures[i].options[j].value) {              var oOption = document.createElement('option');              oOption.value = procedureList.procedures[i].options[j].value;              oOption.appendChild(document.createTextNode(procedureList.procedures[i].options[j].text));                            // Add the option to the optiongroup              cbox.appendChild(oOption);              break;            }          }        }      }    }  }    // Set the selected item in the combo box      for (var i = 0; i<cbox.options.length; i++) {    if (cbox.options.item(i).text == selected) {      cbox.selectedIndex = i;    }  }    EnableComboBox(cbox);      // Return the filtered list  return FilterProcedures(storyList); }// -----------------------------------------------------------------------------------------// --- Helper Functions// -----------------------------------------------------------------------------------------// Enables for disables the Gender radio buttonsfunction EnableGenderButtons(enable) {  var maleRadio = document.getElementById('maleRadio');  var femaleRadio = document.getElementById('femaleRadio');  if (enable == true) {    maleRadio.removeAttribute('disabled');    femaleRadio.removeAttribute('disabled');  }  else {    maleRadio.setAttribute('disabled', 'true');    femaleRadio.setAttribute('disabled', 'true');  }}// Returns true if the gender buttons are enabledfunction IsGenderEnabled() {  var maleRadio = document.getElementById('maleRadio');  var femaleRadio = document.getElementById('femaleRadio');  if (maleRadio.getAttribute('disabled') == 'true' || femaleRadio.getAttribute('disabled') == 'true') {    return false;  }    return true;}function EnableComboBox(cbox) {  // Enable/Disable the combo box  if (cbox.options.length <= 1) {    cbox.setAttribute('disabled', 'true');  }  else {    cbox.removeAttribute('disabled');  }}