Seguin ORthopedics' Corona Virus Notifications

Dr. White advises no use of NSAIDS (non-steroidal anti-inflammatory drugs) at this time due to preliminary evidence which may cause a person to experience increased symptoms of the covid-19 virus. Patient can request a refill at their own risk. Dr. White advises to use tylenol or contact PCP for pain management alternatives.
NSAID list may include but not limited to:
Meloxicam (Mobic)
Nabumetone (Relafen)
Etodolac (Lodine)
Diclofenac ( Voltaren)
Indomethacin (Indocin)
Oxaprozin(Daypro)
Ibuprofen (Advil, or motrin)
Naproxen ( Aleve )
Celeoxib (Celebrex)
NSAID list may include but not limited to:
Meloxicam (Mobic)
Nabumetone (Relafen)
Etodolac (Lodine)
Diclofenac ( Voltaren)
Indomethacin (Indocin)
Oxaprozin(Daypro)
Ibuprofen (Advil, or motrin)
Naproxen ( Aleve )
Celeoxib (Celebrex)
Dr. Twitero's Patients

Dr. Trent Twitero has served in the position of Chief of Surgery and Department Chief of Orthopedics and Rehabilitation Services in military hospitals. A former Lieutenant Colonel in the U.S. Army, Dr. Twitero has received many military honors, including a Bronze Star for his efforts in Iraq and special commendations for excellent patient care.
College: University of North Dakota
Medical School: Uniformed Services University of Health Sciences, Bethesda, MD
Internship: Brooke Army Medical Center, San Antonio, TX
Residency: Lone Star Family Medical Residency, Conroe, TX
Board Certification: American Board of Orthopaedic Surgery
courtesy of www.grmedcenter.com/physicians
College: University of North Dakota
Medical School: Uniformed Services University of Health Sciences, Bethesda, MD
Internship: Brooke Army Medical Center, San Antonio, TX
Residency: Lone Star Family Medical Residency, Conroe, TX
Board Certification: American Board of Orthopaedic Surgery
courtesy of www.grmedcenter.com/physicians
This sample code is designed to generate a post using Authorize.net's Advanced Integration Method (AIM) and display the results of this post to the screen.
For details on how this is accomplished, please review the readme file, the comments in the sample code, and the Authorize.net AIM API documentation found at http://developer.authorize.net
<%@ page import="java.util.*" %> <%@ page import="java.net.*" %> <%@ page import="java.io.*" %> <%@ page import="javax.net.ssl.*" %> <%@ page import="java.net.URLEncoder" %> <% // By default, this sample code is designed to post to our test server for // developer accounts: https://test.authorize.net/gateway/transact.dll // for real accounts (even in test mode), please make sure that you are // posting to: https://secure.authorize.net/gateway/transact.dll URL post_url = new URL("https://test.authorize.net/gateway/transact.dll"); Hashtable post_values = new Hashtable(); // the API Login ID and Transaction Key must be replaced with valid values post_values.put ("x_login", "76CxCWu3S"); post_values.put ("x_tran_key", "52Vywa82j8P5N99q"); post_values.put ("x_version", "3.1"); post_values.put ("x_delim_data", "TRUE"); post_values.put ("x_delim_char", "|"); post_values.put ("x_relay_response", "FALSE"); post_values.put ("x_type", "AUTH_CAPTURE"); post_values.put ("x_method", "CC"); post_values.put ("x_card_num", "4111111111111111"); post_values.put ("x_exp_date", "0115"); post_values.put ("x_amount", "19.99"); post_values.put ("x_description", "Sample Transaction"); post_values.put ("x_first_name", "John"); post_values.put ("x_last_name", "Doe"); post_values.put ("x_address", "1234 Street"); post_values.put ("x_state", "WA"); post_values.put ("x_zip", "98004"); // Additional fields can be added here as outlined in the AIM integration // guide at: http://developer.authorize.net // This section takes the input fields and converts them to the proper format // for an http post. For example: "x_login=username&x_tran_key=a1B2c3D4" StringBuffer post_string = new StringBuffer(); Enumeration keys = post_values.keys(); while( keys.hasMoreElements() ) { String key = URLEncoder.encode(keys.nextElement().toString(),"UTF-8"); String value = URLEncoder.encode(post_values.get(key).toString(),"UTF-8"); post_string.append(key + "=" + value + "&"); } // The following section provides an example of how to add line item details to // the post string. Because line items may consist of multiple values with the // same key/name, they cannot be simply added into the above array. // // This section is commented out by default. /* String[] line_items = { "item1<|>golf balls<|><|>2<|>18.95<|>Y", "item2<|>golf bag<|>Wilson golf carry bag, red<|>1<|>39.99<|>Y", "item3<|>book<|>Golf for Dummies<|>1<|>21.99<|>Y"}; for (int i = 0; i < line_items.length; i++) { String value = line_items[i]; post_string.append("&x_line_item=" + URLEncoder.encode(value)); } */ // Open a URLConnection to the specified post url URLConnection connection = post_url.openConnection(); connection.setDoOutput(true); connection.setUseCaches(false); // this line is not necessarily required but fixes a bug with some servers connection.setRequestProperty("Content-Type","application/x-www-form-urlencoded"); // submit the post_string and close the connection DataOutputStream requestObject = new DataOutputStream( connection.getOutputStream() ); requestObject.write(post_string.toString().getBytes()); requestObject.flush(); requestObject.close(); // process and read the gateway response BufferedReader rawResponse = new BufferedReader(new InputStreamReader(connection.getInputStream())); String line; String responseData = rawResponse.readLine(); rawResponse.close(); // no more data // split the response into an array String [] responses = responseData.split("\\|"); // The results are output to the screen in the form of an html numbered list. out.println("
- ");
for(Iterator iter=Arrays.asList(responses).iterator(); iter.hasNext();) {
out.println("
- " + iter.next() + " "); } out.println("