CINXE.COM

Pharmacy Search

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <!-- for eliminating browser history (cache), so that the browser back button can work --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <!-- for session timeout --> <meta http-equiv="REFRESH" content="1500; URL=/PharmacyLocator/content/session_timeout_warning.jsp?tout=290&contractId=H6847&year=2024&lang=en&clientId=6847&secondaryContractId=null&hostUrl=about:blank&nyFida=null"> <LINK REL=StyleSheet href="/PharmacyLocator/theme/ri/PharmacyLocator.css" TYPE="text/css"> <LINK REL=StyleSheet href="/PharmacyLocator/theme/ri/formulary-search.css" TYPE="text/css"> <LINK REL=StyleSheet href="/PharmacyLocator/theme/ri/balance.css" TYPE="text/css"> <LINK REL=StyleSheet href="/PharmacyLocator/theme/ri/main.css" TYPE="text/css"> <LINK REL=StyleSheet href="/PharmacyLocator/theme/ri/plan_detail.css" TYPE="text/css"> <LINK REL=StyleSheet href="/PharmacyLocator/theme/ri/plstylesRI.css" TYPE="text/css"> <title> Pharmacy Search </title> <script type="text/javascript" src="/PharmacyLocator/js/jquery.min.js" ></script> <script type="text/javascript" src="/PharmacyLocator/js/common.js"></script> <script type="text/javascript" src="/PharmacyLocator/js/iframeResizer.contentWindow.min.js"></script> <script type="text/javascript" src="/PharmacyLocator/js/showHelp.js"></script> <script type="text/javascript"> var hostUrl = 'about:blank'; //set focus to error span if exists $(window).bind("load", function (e) { if ($('#errorDivId').length > 0) { $('#errorDivId').focus(); $('#errorDivId').addClass('add-focus'); var errorDiv = document.getElementById('errorDivId'); if(errorDiv.addEventListener) errorDiv.addEventListener('keydown', keydownHandler, false); else if(errorDiv.attachEvent) errorDiv.attachEvent('onkeydown', keydownHandler); }else{ document.getElementById('pageTitleNvda').focus(); } function keydownHandler(e) { var evt = e || window.event; var keyCode = evt.which || evt.keyCode; if(keyCode === 9) { // TAB pressed if(evt.preventDefault) evt.preventDefault(); else evt.returnValue = false; $('#zipCode').focus(); } } }); function go(){ window.event.preventDefault(); var contractId = 'H6847'; if(document.getElementById("errorDivId")){ $("#errorDivId").remove(); } var isValid = validatePharmacySearchForm(); if(isValid){ $('#errorPharmacySearchMsg').hide(); getPharmacies(); }else{ $('#errorPharmacySearchMsg').show(); $('#errorPharmacySearchMsg').focus(); $('#errorPharmacyNotFoundMsg').hide(); $('#errorPharmacyServiceErrMsg').hide(); $("#psHeading").html(errorHeading); $("#psHeading").attr("aria-label", "Error " + errorHeading); $("#psErrorMessage").html(errorMessages); window.scrollTo(0,0); } } function hideDiv(elementId) { if (document.getElementById) { // DOM3 = IE5, NS6 if(document.getElementById(elementId)){ document.getElementById(elementId).style.display = 'none'; } } else { if (document.layers) { // Netscape 4 eval("document."+elementId+".display = 'none';"); } else { // IE 4 eval("document.all"+elementId+".style.display = 'none';"); } } } function showDiv(elementId) { if (document.getElementById) { // DOM3 = IE5, NS6 if(document.getElementById(elementId)){ document.getElementById(elementId).style.display = 'block'; } } else { if (document.layers) { // Netscape 4 eval("document."+elementId+".display = 'block';"); } else { // IE 4 eval("document.all"+elementId+".style.display = 'block';"); } } } function showHelp() { window.open('/PharmacyLocator/content/help_en.jsp','mywindow', 'scrollbars=yes toolbar=no resizable=yes width=850 height=600'); } function hideStateAndZip() { var totalChkedMailOrSpecilaty = 0; var totalChked = 0; var chkBoxes = document.getElementsByName("selPharmacyTypes"); for(var i = 0; i < chkBoxes.length; i++) { if (chkBoxes[i].checked) { totalChked++; if ( (chkBoxes[i].value == 'M') || (chkBoxes[i].value == 'S') ) { totalChkedMailOrSpecilaty++; } } } if ( (totalChkedMailOrSpecilaty != 0) && (totalChkedMailOrSpecilaty == totalChked) ) {//hide hideDiv("searchLeft"); // hide the additional services when Mail or Speciality is selected hideDiv("additionalServices"); showDiv("SearchBtn"); showDiv("pharmName2"); hideDiv("pharmName1"); hideDiv("SearchB"); } else {//show hideDiv("SearchBtn"); showDiv("searchLeft"); showDiv("additionalServices"); showDiv("pharmName1"); hideDiv("pharmName2"); showDiv("SearchB"); } } function showAllLogos(show){ if (show == 'Y'){ hideDiv("logoParadeOuter"); showDiv("allLogosOuter"); } else{ hideDiv("allLogosOuter"); showDiv("logoParadeOuter"); } } function getPharmacies(){ var year = '2024'; var lang = 'en'; var contractId = 'H6847'; if(contractId == null){ var contractId = ""; } if(year == null){ var year = ""; } if(lang == null){ var lang = ""; } setSelPharmacyTypesUtagData(); document.forms[0].action = "pharmacySearchRI.do?actionToDo=getSearchResults"; document.forms[0].submit(); } function validatePharmacySearchForm(){ errorHeading=""; errorMessages=""; var zipCodeVal=$("#zipCode").val(); var cityVal=$("#city").val(); var stateVal=$("#state").val(); var pharmacyName1Val=$("#pharmName1").val(); var isValidated=true; var isZipCodeMissing=false; var isCityMissing=false; var isStateMissing=false; var isZipCodeValid=true; var isPharmacyTypeSelected=true; var isPharmacyNameValid=true; var preferredMailServiceNetwork = document.querySelectorAll('input[value=M]:checked').length; var countPharamcyTypesSelected = document.querySelectorAll('input[name=selPharmacyTypes]:checked').length; if(zipCodeVal == null || zipCodeVal == ""){ isZipCodeMissing=true; } if(cityVal == null || cityVal == "" || cityVal.length==0){ isCityMissing=true; } if(stateVal == null || stateVal == "" || stateVal.length==0){ isStateMissing=true; } if(isZipCodeMissing && isCityMissing && isStateMissing && !(countPharamcyTypesSelected == 1 && preferredMailServiceNetwork == 1)){ $('#errInlineZipCode').show(); $('#errInlineZipCode').html('<span class="visually-hidden">Error</span>Enter a valid ZIP code'); $('#zipCode').attr('style','border: 2px solid #cc0000 !important;'); $('#errorZipCode').show(); $('#errorZipCode').attr('tabindex','0'); $('#errorZipCode').html("Enter a ZIP code"); $('#errInlineCity').show(); $('#errInlineCity').html('<span class="visually-hidden">Error</span>Enter a valid city'); $('#city').attr('style','border: 2px solid #cc0000 !important;'); $('#errorCity').show(); $('#errorCity').attr('tabindex','0'); $('#errorCity').html("Enter a city"); $('#errInlineState').show(); $('#errInlineState').html('<span class="visually-hidden">Error</span>Enter a valid state'); $('#state').attr('style','border: 2px solid #cc0000 !important;'); $('#errorState').show(); $('#errorState').attr('tabindex','0'); $('#errorState').html("Select a state"); errorHeading = "You need to provide some missing information"; errorMessages = errorMessages.concat("To find a pharmacy, enter either a 5-number ZIP code OR a city and state."); isValidated=false; } else{ $('#zipCode').removeAttr("style"); $('#errInlineZipCode').hide(); $('#errorZipCode').hide(); $('#city').removeAttr("style"); $('#errInlineCity').hide(); $('#errorCity').hide(); $('#state').removeAttr("style"); $('#errInlineState').hide(); $('#errorState').hide(); } if(!isZipCodeMissing && (isCityMissing || isStateMissing)){ $('#zipCode').removeAttr("style"); $('#errInlineZipCode').hide(); $('#errorZipCode').hide(); $('#city').removeAttr("style"); $('#errInlineCity').hide(); $('#errorCity').hide(); $('#state').removeAttr("style"); $('#errInlineState').hide(); $('#errorState').hide(); } if(isZipCodeMissing && (!isCityMissing && !isStateMissing)){ $('#zipCode').removeAttr("style"); $('#errInlineZipCode').hide(); $('#errorZipCode').hide(); $('#city').removeAttr("style"); $('#errInlineCity').hide(); $('#errorCity').hide(); $('#state').removeAttr("style"); $('#errInlineState').hide(); $('#errorState').hide(); } if(isZipCodeMissing && (!isCityMissing && isStateMissing)){ $('#errInlineZipCode').show(); $('#errInlineZipCode').html('<span class="visually-hidden">Error</span>Enter a valid ZIP code'); $('#zipCode').attr('style','border: 2px solid #cc0000 !important;'); $('#errorZipCode').show(); $('#errorZipCode').attr('tabindex','0'); $('#errorZipCode').html("Enter a ZIP code"); $('#errInlineState').show(); $('#errInlineState').html('<span class="visually-hidden">Error</span>Enter a valid state'); $('#state').attr('style','border: 2px solid #cc0000 !important;'); $('#errorState').show(); $('#errorState').attr('tabindex','0'); $('#errorState').html("Select a state"); $('#city').removeAttr("style"); $('#errInlineCity').hide(); $('#errorCity').hide(); errorHeading = "You need to provide some missing information"; errorMessages = errorMessages.concat("To find a pharmacy, enter either a 5-number ZIP code OR a city and state."); isValidated=false; } if(isZipCodeMissing && (isCityMissing && !isStateMissing)){ $('#errInlineZipCode').show(); $('#errInlineZipCode').html('<span class="visually-hidden">Error</span>Enter a valid ZIP code'); $('#zipCode').attr('style','border: 2px solid #cc0000 !important;'); $('#errorZipCode').show(); $('#errorZipCode').attr('tabindex','0'); $('#errorZipCode').html("Enter a ZIP code"); $('#errInlineCity').show(); $('#errInlineCity').html('<span class="visually-hidden">Error</span>Enter a valid city'); $('#city').attr('style','border: 2px solid #cc0000 !important;'); $('#errorCity').show(); $('#errorCity').attr('tabindex','0'); $('#errorCity').html("Enter a city"); $('#state').removeAttr("style"); $('#errInlineState').hide(); $('#errorState').hide(); errorHeading = "You need to provide some missing information"; errorMessages = errorMessages.concat("To find a pharmacy, enter either a 5-number ZIP code OR a city and state."); isValidated=false; } if(zipCodeVal !=null && zipCodeVal!="" && zipCodeVal.length != 5){ $('#errInlineZipCode').show(); $('#errInlineZipCode').html('<span class="visually-hidden">Error</span>Enter a 5-number ZIP code'); $('#zipCode').attr('style','border: 2px solid #cc0000 !important;'); $('#errorZipCode').show(); $('#errorZipCode').attr('tabindex','0'); $('#errorZipCode').html("Enter a ZIP code"); errorHeading = "You need to provide a ZIP code with at least 5 numbers"; isValidated=false; isZipCodeValid=false; } if(pharmacyName1Val != null && pharmacyName1Val != "" && pharmacyName1Val.length < 3){ $('#errInlinepharmacyName1').show(); $('#errInlinepharmacyName1').html('<span class="visually-hidden">Error</span>Enter a pharmacy name with at least 3 characters'); $('#pharmacyName1').attr('style','border: 2px solid #cc0000 !important;'); $('#errorPharmacyName').show(); $('#errorPharmacyName').attr('tabindex','0'); $('#errorPharmacyName').html('Enter a pharmacy name'); isValidated=false; isPharmacyNameValid=false; errorHeading = "You need to provide a pharmacy name with at least 3 characters"; } else{ $('#pharmacyName1').removeAttr("style"); $('#errInlinepharmacyName1').hide(); $('#errorPharmacyName').hide(); } //check PharmacyType var phTypes = document.getElementsByName('selPharmacyTypes'); var isPharmacyTypeChecked=false; for (var i=0;i<phTypes.length;i++){ if (phTypes[i].checked) { isPharmacyTypeChecked=true; } } if(!isPharmacyTypeChecked){ $('input[name="selPharmacyTypes"]').addClass('cb-error'); $('#errInlinepharmacyTypes').show(); $('#errInlinepharmacyTypes').html('<span class="visually-hidden">Error</span>Select a pharmacy type'); $('#errorPharmacyType').show(); $('#errorPharmacyType').attr('tabindex','0'); $('#errorPharmacyType').html('Select a pharmacy type.'); if(isValidated){ errorHeading = "You need to provide a pharmacy type."; } else{ if(isZipCodeMissing && (isCityMissing || isStateMissing )){ errorMessages = errorMessages+" "+("You also need to select a pharmacy type."); } } isValidated=false; } else{ $('#errInlinepharmacyTypes').hide(); $('input[name="selPharmacyTypes"]').removeClass('cb-error'); $('#errorPharmacyType').hide(); } //if zipcode<5 char & PharmacyType is not selected if(!isZipCodeValid && !isPharmacyTypeChecked){ $('#errorZipCode').html('Enter a 5-number ZIP code'); errorHeading = "You need to provide some missing information"; } //if PharmacyName is<3 char & PharmacyType is not selected if(!isPharmacyTypeChecked && !isPharmacyNameValid){ $('#errorPharmacyType').html('Select a pharmacy type'); $('#errorPharmacyName').html('Enter a pharmacy name with at least 3 characters'); errorHeading = "You need to provide some missing information"; } //if zipcode<5 char & PharmacyName is<3 char if(!isZipCodeValid && !isPharmacyNameValid){ $('#errorZipCode').html('Enter a 5-number ZIP code'); $('#errorPharmacyName').html('Enter a pharmacy name with at least 3 characters'); errorHeading = "You need to provide some missing information"; } ////if zipcode<5 char & PharmacyName is<3 & PharmacyType is not selected if(!isZipCodeValid && !isPharmacyTypeChecked && !isPharmacyNameValid){ $('#errorPharmacyType').html('Enter a pharmacy type'); $('#errorZipCode').html('Enter a 5-number ZIP code'); $('#errorPharmacyName').html('Enter a pharmacy name with at least 3 characters'); errorHeading = "You need to provide some missing information"; } return isValidated; } </script> </head> <body> <script type="text/javascript" src="/PharmacyLocator/js/jquery.cookie.js"></script> <script type="text/javascript" src="/PharmacyLocator/js/common.js"></script> <script type="text/javascript"> var server_name = 'sit3xws85.caremark.com'; var tealiumEnv = 'qa'; var tealiumTagEnabled = ('true' != 'false'); var openedFromParentApps = ('true' == 'true'); var prevPageUrlFromParent = ''; var clientContractId = 'Unknown-H6847'; var domain = 'medicareplanrx.com'; var common_url = "rxmedicareplans"; var platform = getPlatform(); var toolName = "Pharmacy Locator"; var pageCategory = "Store Locator"; var page_name = 'Search 2024'; var page_url = getPageUrl(); var previous_page_name = ""; var previous_page_url = ""; var previous_plan = ""; if (openedFromParentApps) { if (!isNullOrEmpty(prevPageUrlFromParent)) { var urlParts = prevPageUrlFromParent.split("/"); if (urlParts.length > 0) { previous_page_name = urlParts[urlParts.length-1]; } previous_page_url = prevPageUrlFromParent; } } else { previous_page_name = $.cookie('page_name'); previous_page_url = $.cookie('page_url'); } //$.cookie('page_name', page_name, { secure: true, comment: '; SameSite=None;' }); //$.cookie('page_url', page_url, { secure: true, comment: '; SameSite=None;' }); document.cookie = 'page_name=' + page_name + '; SameSite=None; Secure'; document.cookie = 'page_url=' + page_url + '; SameSite=None; Secure'; function callTealiumTag() { if (tealiumTagEnabled) { (function(a,b,c,d){ a='//tags.tiqcdn.com/utag/cvs/nejerxmedicareplans/' + tealiumEnv + '/utag.js'; b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true; a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a); })(); } } function setUtagData(errStr) { utag_data = { "domain" : domain, "platform" : platform, "common_url" : common_url, "sub_section1" : getSubSection1(), "sub_section4" : getSubSection2(), "page_detail" : page_name, "page_name" : getPageNameWithAll(), "page_category" : pageCategory, "previous_page_name" : getPrevPageName(), "page_url" : getPageUrl(), "previous_page_url" : previous_page_url, "environment" : tealiumEnv, "time_stamp" : getTimeStampInEST(), "document_title" : window.document.title, "query_string" : window.location.search, "state_city_ipaddress" : "", "field_errors" : errStr, "client_id" : clientContractId, "page_type" : "" }; } function setSearchUtagData(errStr) { if (tealiumTagEnabled) { setUtagData(errStr); if ("No pharmacies were found that match the search criteria. Please try again." == errStr) { utag_data["no_of_search_results"] = "0"; utag_data["unsuccessful_search"] = "event7"; utag_data["page_error"]=errStr; utag_data["events"]= "event4"; } if ("Your pharmacy name should be at least 3 characters." == errStr) { utag_data["unsuccessful_search"] = "event7"; utag_data["page_error"]=errStr; } if ("Please enter a 5 digit Zip Code." == errStr) { utag_data["unsuccessful_search"] = "event7"; utag_data["page_error"]=errStr; } if ("Please refine your search by entering ZIP Code or City and State." == errStr) { utag_data["unsuccessful_search"] = "event7"; utag_data["page_error"]=errStr; } if ("Please select at least one pharmacy type for searching pharmacies." == errStr) { utag_data["unsuccessful_search"] = "event7"; utag_data["page_error"]=errStr; } if("System Error.Please try again later." == errStr) { utag_data["unsuccessful_search"] = "event7"; utag_data["page_error"]=errStr; } callTealiumTag(); } } function setResultsUtagData(nbrOfPharmacies, zipcode) { if (tealiumTagEnabled) { setUtagData("", zipcode); utag_data["no_of_search_results"] = nbrOfPharmacies; utag_data["successful_search"] = "event6"; utag_data["search_type"] = "pharmacy locator"; callTealiumTag(); } } function getSubSection1() { return common_url + "|" + platform + "|" + toolName; } function getSubSection2() { return getSubSection1() + "|" + page_name; } function getSubSection3() { return getSubSection1(); } function getPageNameWithAll() { return getSubSection2(); } function getPageNameForSearchPage(pageNameWithSelPlan) { return getSubSection2() + "|" + pageNameWithSelPlan; } function getPrevPageName(){ return getSubSection3() + "|" + previous_page_name; } function getPlatform() { var navUserAgent = navigator.userAgent; if (navUserAgent.match(/Tablet|iPad/i) || (navUserAgent.match(/Android/i) && !navUserAgent.match(/Mobile Safari/i))) { return 'tweb'; } else if (navUserAgent.match(/IEMobile|Windows Phone|Lumia|Android|webOS|iPhone|iPod|Blackberry|PlayBook|BB10|Mobile Safari|Opera Mini|\bCrMo\/|Opera Mobi/i)) { return 'mweb'; } else { return 'dweb'; } } function getTimeStampInEST() { var date = new Date(); date.setHours(date.getHours() + date.getTimezoneOffset()/60 - 5); //to adjust to EST time var month = date.getMonth() + 1; var day = date.getDate(); var hour = date.getHours(); var min = date.getMinutes(); var ampm = hour >= 12 ? 'pm' : 'am'; if (hour >= 12) hour = hour - 12; month = (month < 10 ? "0" : "") + month; day = (day < 10 ? "0" : "") + day; hour = (hour < 10 ? "0" : "") + hour; min = (min < 10 ? "0" : "") + min; var str = month + "/" + day + "/" + date.getFullYear() + " " + hour + ":" + min + "" + ampm + " EST"; return str; } // Selecting Pharmacy Type function setSelPharmacyTypesUtagData() { if (tealiumTagEnabled) { //collect the selected pharmacy types for tealium var chkBoxes = document.getElementsByName("selPharmacyTypes"); var selPharmTypes = []; for(var i = 0; i < chkBoxes.length; i++) { if (chkBoxes[i].checked) { selPharmTypes.push(chkBoxes[i].value); } } var selPharmTypesStr = ""; if (selPharmTypes.indexOf("PR") != -1) { selPharmTypesStr = selPharmTypesStr + "Preferred Retail"; } if (selPharmTypes.indexOf("R") != -1) { if (selPharmTypesStr.length != 0) selPharmTypesStr = selPharmTypesStr + "|"; selPharmTypesStr = selPharmTypesStr + "Community/Retail"; } if (selPharmTypes.indexOf("M") != -1) { if (selPharmTypesStr.length != 0) selPharmTypesStr = selPharmTypesStr + "|"; selPharmTypesStr = selPharmTypesStr + "Preferred Mail Service Network"; } if (selPharmTypes.indexOf("I") != -1) { if (selPharmTypesStr.length != 0) selPharmTypesStr = selPharmTypesStr + "|"; selPharmTypesStr = selPharmTypesStr + "Indian Health Service"; } if (selPharmTypes.indexOf("L") != -1) { if (selPharmTypesStr.length != 0) selPharmTypesStr = selPharmTypesStr + "|"; selPharmTypesStr = selPharmTypesStr + "Long Term Care"; } if (selPharmTypes.indexOf("H") != -1) { if (selPharmTypesStr.length != 0) selPharmTypesStr = selPharmTypesStr + "|"; selPharmTypesStr = selPharmTypesStr + "Home Infusion Therapy"; } loadUtagIfNotLoaded(); utag.link({ "pharmacy_type" : selPharmTypesStr, "link_name" : "Custom:Pharmacy Search Clicked" }); } } function loadUtagIfNotLoaded() { if (tealiumTagEnabled) { if (typeof utag === 'undefined') { callTealiumTag(); } } } // On Click of Save function setSaveSelUtagData() { loadUtagIfNotLoaded(); if (tealiumTagEnabled) { utag.link({ "pharmacy_save" : "Save Pharmacy List", "link_name" : "Custom: Click on Save" }); } } function setDirectionsUtagData(errStr) { if (tealiumTagEnabled) { setUtagData(errStr); callTealiumTag(); } } function setMapsUtagData(errStr) { if (tealiumTagEnabled) { setUtagData(errStr); callTealiumTag(); } } // Sort By Pharmacy Name function sortByPharmacyNameUtagData() { loadUtagIfNotLoaded(); if (tealiumTagEnabled) { utag.link({ "pharmacy_sort_name" : "Sort By Pharmacy Name", "link_name" : "Custom: Pharmacy sort by Name" }); } } // Sign in to Caremark.com function setTealiumExternalSignin() { loadUtagIfNotLoaded(); if (tealiumTagEnabled) { utag.link({ "link_name" : "Custom: Sign in on Caremark.com" }); } } // Sign in to Caremark.com function setTealiumExternalSigninOk() { loadUtagIfNotLoaded(); if (tealiumTagEnabled) { utag.link({ "link_name" : "Custom: Ok,Sign in on Caremark.com" }); } } // Sort By Distance function sortByPharmacyDistanceUtagData() { loadUtagIfNotLoaded(); if (tealiumTagEnabled) { utag.link({ "pharmacy_sort_distance" : "Sort By Distance", "link_name" : "Custom: Pharmacy sort by Distance" }); } } function isNullOrEmpty(str) { return str == null || str.trim().length == 0; } </script> <div id="wrap"> <div class="formulary-search" style="width:980px;"> <span id="pageTitleNvda" class="visually-hidden" role="alert" aria-live="polite"> Find a Pharmacy Near You </span> <h1 style="width:920px; margin-top:0px; margin-bottom:13px;" > Find a Pharmacy Near You </h1> <p id="pharmacy_subHead" >Please enter a ZIP code or city and state, and select at least one pharmacy type. All other fields are optional but can help refine your search.</p> <!-- error banner start --> <div class="error-pharmacySearchMsg" id="errorPharmacySearchMsg" role="alert" style="display:none" tabindex="0"> <img src="/PharmacyLocator/images/exclamationwarning.png" alt=""/> <h2 id="psHeading"></h2> <span id="psErrorMessage"></span> <!-- <p> To find a pharmacy, enter either a 5-number ZIP code OR a city and state.</p> --> <div class="error-link-list"> <a href="#" onclick="javascript:setTimeout(function () { document.getElementById('zipCode').focus(),0});" id="errorZipCode" ></a> <a href="#" onclick="javascript:setTimeout(function () { document.getElementById('city').focus(),0});" id="errorCity" ></a> <a href="#" onclick="javascript:setTimeout(function () { document.getElementById('state').focus(),0});" id="errorState"> </a> <a href="#" onclick="javascript:setTimeout(function () { document.getElementById('pharmName1').focus(),0});" id="errorPharmacyName" ></a> <a href="#" onclick="javascript:setTimeout(function () { document.getElementById('selPharmacyTypesPR').focus(),0});" id="errorPharmacyType" ></a> </div> </div> <div class="error-pharmacySearchMsg" id="errorPharmacyNotFoundMsg" style="display:none" tabindex="0"> <img src="/PharmacyLocator/images/exclamationwarning.png" alt="Error"/> <h2>No pharmacies were found to match your search criteria</h2> <p>Try another search.</p> </div> <div class="error-pharmacySearchMsg" id="errorPharmacyServiceErrMsg" style="display:none" tabindex="0"> <img src="/PharmacyLocator/images/exclamationwarning.png" alt="Error"/> <h2>Something didn't work right</h2> <p>Try again. Call 1-800-378-9442 8:00 am - 8:00 pm, 7 days a week. TTY users call 711. if you still need assistance.</p> </div> <!-- error banner ends --> <form id="pharmacySearchRI" name="pharmacySearchRI" action="/PharmacyLocator/pharmacySearchRI.do" method="post"> <div class="formRow"> <div class="col_left" id="searchLeft"> <fieldset style="margin-bottom: 15px; margin-right:0"> <legend><label for="zipCode"><strong>ZIP Code</strong></label></legend> <input type="text" name="zipCode" size="10" maxlength="5" value="" id="zipCode" title="zipCode" onkeypress="return isNumberKey(event)"/> <span class="error-msg" id="errInlineZipCode"></span> <div class="clear"></div></fieldset> <img alt="or" src="/PharmacyLocator/images/div_or-with-line_en.gif"/> <div class="clear"></div> <div class="clear"></div> <div class="pharmacyCityState"> <div> <fieldset style="margin-bottom: 15px; margin-right:0"> <legend><label for="address"><strong>Address</strong></label></legend> <input type="text" name="address" size="30" value="" id="address" style="width:200px" title="Address"/></fieldset></div> <div class="pharmacyCity"> <fieldset style="margin-right:0"> <legend><label for="city"><strong>City</strong></label></legend> <input type="text" name="city" size="15" value="" id="city" title="City"/> <span class="error-msg" id="errInlineCity"></span> </fieldset> </div> <div class="pharmacyState"> <fieldset style="margin-right:0"> <legend><label for="state"><strong>State</strong></label></legend> <select name="state" id="state" class="selectbox"> <option value="">Select State</option> <option value="AL">Alabama</option> <option value="AK">Alaska</option> <option value="AZ">Arizona</option> <option value="AR">Arkansas</option> <option value="CA">California</option> <option value="CO">Colorado</option> <option value="CT">Connecticut</option> <option value="DE">Delaware</option> <option value="DC">District of Columbia</option> <option value="FL">Florida</option> <option value="GA">Georgia</option> <option value="HI">Hawaii</option> <option value="ID">Idaho</option> <option value="IL">Illinois</option> <option value="IN">Indiana</option> <option value="IA">Iowa</option> <option value="KS">Kansas</option> <option value="KY">Kentucky</option> <option value="LA">Louisiana</option> <option value="ME">Maine</option> <option value="MD">Maryland</option> <option value="MA">Massachusetts</option> <option value="MI">Michigan</option> <option value="MN">Minnesota</option> <option value="MS">Mississippi</option> <option value="MO">Missouri</option> <option value="MT">Montana</option> <option value="NE">Nebraska</option> <option value="NV">Nevada</option> <option value="NH">New Hampshire</option> <option value="NJ">New Jersey</option> <option value="NM">New Mexico</option> <option value="NY">New York</option> <option value="NC">North Carolina</option> <option value="ND">North Dakota</option> <option value="OH">Ohio</option> <option value="OK">Oklahoma</option> <option value="OR">Oregon</option> <option value="PA">Pennsylvania</option> <option value="PR">Puerto Rico</option> <option value="RI">Rhode Island</option> <option value="SC">South Carolina</option> <option value="SD">South Dakota</option> <option value="TN">Tennessee</option> <option value="TX">Texas</option> <option value="UT">Utah</option> <option value="VT">Vermont</option> <option value="VA">Virginia</option> <option value="VI">Virgin Islands</option> <option value="WA">Washington</option> <option value="WV">West Virginia</option> <option value="WI">Wisconsin</option> <option value="WY">Wyoming</option> </select> <span class="error-msg" id="errInlineState"></span> </fieldset> </div> </div> <fieldset style="margin-right:0"> <legend><label for="radius"><strong>Mile Radius</strong></label></legend> <select name="radius" id="radius"> <option value="5">5</option> <option value="10">10</option> <option value="15">15</option> <option value="20">20</option> <option value="50">50</option> </select> The maximum distance (in miles) you are willing to travel to visit a pharmacy. </fieldset> </div> <div class="col_right"> <div class="pharmacy_nameContainer_info"> <div class="pharmacy_info_row"> <label for="pharmName1"><strong>Pharmacy Name (Optional)</strong></label> <input type="text" name="pharmacyName1" size="20" maxlength="100" value="" id="pharmName1" style="width:200px" title="Pharmacy Name"/> <input type="text" name="pharmacyName2" size="20" maxlength="100" value="" id="pharmName2" style="width:200px;display:none;" title="Pharmacy Name"/> <span style="color:#cc0000;" id="errInlinepharmacyName1"></span> </div> <fieldset class="pharmacy_info_row2" style="float: none; margin: 0px;" id="selPharmacyTypesPR"> <legend> <strong>Pharmacy Type</strong> <a role="button" class='ptype-helper' href="javascript:showhelp('pharmacyTypeHelpRI','H6847','en')"> <span class="visually-hidden">Pharmacy Type information</span> <img alt="Show Help" src="/PharmacyLocator/images/tool_tip-red.gif"/> </a> </legend> <span class="checkbox-section"> <span class="pharstep1_ckbx"> <input type="checkbox" name="selPharmacyTypes" value="R" id="r1Id-1" checked="checked" onclick="hideStateAndZip()" /> <label for="r1Id-1" class="checkboxLabel">Community/Retail</label> <input type="hidden" id="__multiselect_r1Id" name="__multiselect_selPharmacyTypes" value="" /> </span> <span class="pharstep1_ckbx"> <input type="checkbox" name="selPharmacyTypes" value="L" id="l1Id-1" onclick="hideStateAndZip()" /> <label for="l1Id-1" class="checkboxLabel">Long Term Care</label> <input type="hidden" id="__multiselect_l1Id" name="__multiselect_selPharmacyTypes" value="" /> </span> <span class="pharstep1_ckbx"> <input type="checkbox" name="selPharmacyTypes" value="H" id="h1Id-1" onclick="hideStateAndZip()" /> <label for="h1Id-1" class="checkboxLabel">Home Infusion Therapy</label> <input type="hidden" id="__multiselect_h1Id" name="__multiselect_selPharmacyTypes" value="" /> </span> </span> <span class="checkbox-section"> <span class="pharstep1_ckbx"> <input type="checkbox" name="selPharmacyTypes" value="M" id="m2Id-1" onclick="hideStateAndZip()" /> <label for="m2Id-1" class="checkboxLabel">Preferred Mail Service Network</label> <input type="hidden" id="__multiselect_m2Id" name="__multiselect_selPharmacyTypes" value="" /> </span> <span class="pharstep1_ckbx"> <input type="checkbox" name="selPharmacyTypes" value="I" id="i1Id-1" onclick="hideStateAndZip()" /> <label for="i1Id-1" class="checkboxLabel">Indian Health Service</label> <input type="hidden" id="__multiselect_i1Id" name="__multiselect_selPharmacyTypes" value="" /> </span> </span> <span class="error-msg" id="errInlinepharmacyTypes"></span> </fieldset> <fieldset class="pharmacy_info_row2" id="additionalServices" style="float: none; margin: 0px;"> <legend> <strong>Additional Services (Optional)</strong> <a role="button" class='addservice-helper' href="javascript:showhelp('pharmacyTypeHelpRI','H6847','en')"> <span class="visually-hidden">Additional Services information</span> <img alt="Show Help" src="/PharmacyLocator/images/tool_tip-red.gif"/> </a> </legend> <span class="checkbox-section"> <span class="pharstep1_ckbx"> <input type="checkbox" name="selAddnSrvcTypes" value="CO" id="coId-1" /> <label for="coId-1" class="checkboxLabel">Compounds</label> <input type="hidden" id="__multiselect_coId" name="__multiselect_selAddnSrvcTypes" value="" /> </span> <span class="pharstep1_ckbx"> <input type="checkbox" name="selAddnSrvcTypes" value="P" id="epId-1" /> <label for="epId-1" class="checkboxLabel">Electronic Prescribing Enabled</label> <input type="hidden" id="__multiselect_epId" name="__multiselect_selAddnSrvcTypes" value="" /> </span> <span class="pharstep1_ckbx"> <input type="checkbox" name="selAddnSrvcTypes" value="OH" id="ohId-1" /> <label for="ohId-1" class="checkboxLabel">Open 24 hours</label> <input type="hidden" id="__multiselect_ohId" name="__multiselect_selAddnSrvcTypes" value="" /> </span> <span class="pharstep1_ckbx"> <input type="checkbox" name="selAddnSrvcTypes" value="DE" id="deId-1" /> <label for="deId-1" class="checkboxLabel">Delivery</label> <input type="hidden" id="__multiselect_deId" name="__multiselect_selAddnSrvcTypes" value="" /> </span> </span> <span class="checkbox-section"> <span class="pharstep1_ckbx"> <input type="checkbox" name="selAddnSrvcTypes" value="ER" id="erId-1" /> <label for="erId-1" class="checkboxLabel">Emergency Rx</label> <input type="hidden" id="__multiselect_erId" name="__multiselect_selAddnSrvcTypes" value="" /> </span> <span class="pharstep1_ckbx"> <input type="checkbox" name="selAddnSrvcTypes" value="DT" id="dtId-1" /> <label for="dtId-1" class="checkboxLabel">Drive Thru</label> <input type="hidden" id="__multiselect_dtId" name="__multiselect_selAddnSrvcTypes" value="" /> </span> <span class="pharstep1_ckbx"> <input type="checkbox" name="selAddnSrvcTypes" value="OW" id="owId-1" /> <label for="owId-1" class="checkboxLabel">Open 7 days a week</label> <input type="hidden" id="__multiselect_owId" name="__multiselect_selAddnSrvcTypes" value="" /> </span> </span> </fieldset> <div id="SearchBtn" style="display:none"><input type="image" id="SearchButn" name="SearchButn" src="/PharmacyLocator/images/btn_search_en.gif" onMouseOver="MM_swapImage('SearchButn','','/PharmacyLocator/images/hover_btn_search_en.gif',1)" onMouseOut="MM_swapImage('SearchButn','','/PharmacyLocator/images/btn_search_en.gif',1)" alt="Search" onclick="javascript:go();"/> </div> </div> </div> </div> <p> <input type="image" id="SearchB" name="SearchB" src="/PharmacyLocator/images/btn_search_en.gif" onMouseOver="MM_swapImage('SearchB','','/PharmacyLocator/images/hover_btn_search_en.gif',1)" onMouseOut="MM_swapImage('SearchB','','/PharmacyLocator/images/btn_search_en.gif',1)" alt="Search" onclick="javascript:go();"/> </p> </form> &nbsp; <div class="disclaimer"> </div> </div> </div> <script type="text/javascript"> hideStateAndZip(); $(document).ready(function() { var errorText = $('#errorDivId>ul').text().trim(); //call setUtag on load setSearchUtagData(errorText); sendPageName("Search for a participating pharmacy"); //document.title = "Search for a participating pharmacy"; // Tooltips $('.tooltip').on("mouseenter focusin", function () { var offset = $(this).offset(); var tip = $(this).attr('alt'); var bubble = $('<div class="bubble"></div>').html(tip); $(this).attr('title', ''); bubble.appendTo('body').css({ position: 'absolute', left: offset.left - 110, top: offset.top - 55, padding: '10px', background: '#ffffff', color: '#444', width: '210px', border: '1px solid #444' }); }); $('.tooltip').on("mouseleave focusout", function () { $('body').find('.bubble').remove(); }); }); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10