-
Notifications
You must be signed in to change notification settings - Fork 0
/
medicinedetails.php
3441 lines (3386 loc) · 90.8 KB
/
medicinedetails.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>medibay home</title>
<meta name="author" content="Adtile">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
<link rel="shortcut icon" href="img/favicon1.png" type="image/x-icon" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link rel="stylesheet" href="css/ie.css">
<![endif]-->
<script src="js/responsive-nav.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#myInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#myTable tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
</script>
<style>
table{
border-spacing:0 1px;
}
th{
background-color:#4287f5;
color:white;
}
th,td{
width:auto;
text-align:center;
border:1px solid black;
padding:5px;
}
h2{
color: #4287f5;
}
h3{
border: 3px solid green;
border-radius: 17px;
font-size:20px;
background: -webkit-linear-gradient(skyblue,orange);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h4{
color: red;
}
li,p{
font-size:17px;
font-height: 3px;
}
.line2{
background-color: silver;
}
div.allmed{
padding-left: 20px;
font-weight: 20;
}
section{
margin-top: 10px;
}
#back2Top {
width: 40px;
line-height: 40px;
overflow: hidden;
z-index: 999;
display: none;
cursor: pointer;
-moz-transform: rotate(270deg);
-webkit-transform: rotate(270deg);
-o-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
position: fixed;
bottom: 50px;
right: 0;
background-color: #DDD;
color: #555;
text-align: center;
font-size: 30px;
text-decoration: none;
}
#back2Top:hover {
background-color: #DDF;
color: #000;
}
</style>
</head>
<body>
<?php include "header.php"; ?>
<br />
<a id="back2Top" title="Back to top" href="#">➤</a>
<div class="sticky1">
<p class="s"><input type="search" class="mySearch" id="text-search" placeholder="search text" /></p>
</div>
<br /><br /><br/>
<section id="allmedicines">
<div class="allmed"><br /><br /><br/>
<center><h2 id="oralmedicines">1.ORAL MEDICINES</a></h2></center>
<p id="md1"></p>
<br /><br /><br />
<center>
<h3>ACETYLSALICYLIC ACID 500mg (Pain Killer and antipyretic)</h3>
</center>
<p>(Aspirine® 500 mg, Aspirine pH8® 500 mg, Claragine® 500 mg, Aspro®...)</p>
<h4>Indications</h4>
<ul>
<li>Mild to moderate pain</li>
<li>Fever</li>
<li>Joint or muscular pain</li>
</ul>
<h4>Dosage</h4>
<ul>
<li>-Child: 25 to 50 mg/kg/day in 3 divided doses</li>
<li>-Adult: 1 to 3 g/ day in 3 divided doses</li>
<li>Maximum dose:</li>
<p>Child: 50mg/kg/day </p>
<p>Adult: 4g/day</p>
</ul>
<div style="overflow-x:auto;"> <table border="1">
<thead>
<tr>
<th>Weight</th>
<th>Tablet</th>
<th>Morning</th>
<th>Noon</th>
<th>Evening</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td>Adult</td>
<td>500mg</td>
<td>1 tab</td>
<td>1 tab</td>
<td>1 tab</td>
</tr>
<tr>
<td>15-35kg</td>
<td>500mg</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
</tr>
<tr>
<td>8-15kg</td>
<td>500mg</td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
</tr>
<tr>
<td>4-8kg</td>
<td colspan="4" rowspan="2"> Do Not Administer</td>
</tr>
<tr>
<td>< 4kg</td>
</tr>
</tbody>
</table> </div>
<br />
<h4>Side effects</h4>
<p>May cause epigastric pain, hemorrhage, or allergic reactions,
in this case, stop treatment and give paracetamol</p>
<h4>Precautions</h4>
<ul>
<li>•Do not administer:</li>
<p>-If epigastric pain, alcoholism, hemorrhage, asthma.</p>
<p>-To children under 1 year (prefer Paracetamol </p>
<li>•Do not use tablets with a strong smell of vinegar, but a slight acetic acid smell is always present.</li>
<li>•Pregnancy: avoid during the third trimester (prefer paracetamol) </li>
<li>•Breast-feeding: avoid (prefer paracetamol) </li>
</ul>
<h4>Remarks:</h4>
<ul>
<li>-Take during meals, preferably with a lot of drinking water.</li>
<li>-Storage: - below 30 ºC</li>
</ul>
<p id="md2"></p>
<br /><br /><br />
<center>
<h3 >ALUMINIUM HYDROXIDE 500mg (Antacid)</h3>
</center>
<p>(Maalo®x, Supralox®, Rocgel®, Gelox®, Gelusil®...)</p>
<h4>Indications</h4>
<ul>
<li>-Stomach burnings</li>
</ul>
<h4>Dosage</h4>
<ul>
<li>-Child: rarely indicated. When necessary: 75 mg/ kg /day.</li>
<li>-Adult: 1.5 g to 3g/ day in 3 divided doses after meals or 500 mg during attacks.</li>
</ul>
<div style="overflow-x:auto;"> <table border="1">
<thead>
<tr>
<th>Weight</th>
<th>Tablet</th>
<th>Morning</th>
<th>Noon</th>
<th>Evening</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td>Adult</td>
<td>500mg</td>
<td>1 to 2 tab</td>
<td>1 to 2 tab</td>
<td>1 to 2 tab</td>
</tr>
<tr>
<td>15-35kg</td>
<td>500mg</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
</tr>
<tr>
<td>8-15kg</td>
<td>500mg</td>
<td colspan="4" rowspan="3"> Do Not Administer</td>
</tr>
<tr>
<td>4-8kg</td>
<td></td>
</tr>
<tr>
<td>< 4kg</td>
<td></td>
</tr>
</tbody>
</table> </div>
<br />
<h4>Duration:</h4> <p>3 to 5 days, longer if necessary</p>
<h4>Precautions</h4>
<ul>
<li>•Avoid alcohol, coffee, tea, coca-cola, carbonated drinks, spices and tobacco.</li>
</ul>
<h4>Remarks:</h4>
<ul>
<li>-Chew tablets after meals</li>
</ul>
<p id="md3"></p>
<br /><br /><br />
<center>
<h3 >AMOXICILLINE 250mg</h3>
<h3 >AMOXICILLINE 500mg</h3>
</center>
<p>Antibiotic: prescription under medical supervision</p>
<br />
<p>(A-Gram®, Bristamox®, Clamoxyl®, Hiconcil®, Flemoxine®, Amodex® ,Amophar®,
ramidil®, Bactox® , Zamocilline®, Amoxicap®…)</p>
<h4>Indications</h4>
<ul>
<li>-Respiratory infections with fever in children under 5 years.</li>
<li>-Genito-urinary infections, especially in pregnant women.</li>
<li>-Puerperal sepsis.</li>
</ul>
<h4>Dosage</h4>
<ul>
<li>-Child: 50 mg/ kg/day in 2 divided doses</li>
<li>-Adult: 1 to 2 g / day in 2 divided doses</li>
<li>-In case of severe infections, doses may be increased and given 3 times daily.
A twice daily prescription is generally preferable to ensure treatment compliance.</li>
</ul>
<div style="overflow-x:auto;"> <table border="1">
<thead>
<tr>
<th>Weight</th>
<th>Tablet</th>
<th>Morning</th>
<th>Noon</th>
<th>Evening</th>
<th>Duration</th>
<th>Total Treatment</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td rowspan="2">Adult</td>
<td>250 mg</td>
<td>2 to 4 tab</td>
<td></td>
<td>2 to 4 tab</td>
<td>Min 5 days</td>
<td>20 to 40 tabs</td>
</tr>
<tr>
<td>500 mg</td>
<td>1 to 2 tab</td>
<td></td>
<td>2 to 4 tab</td>
<td></td>
<td>10 to 20 tabs</td>
</tr>
<tr class="line2">
<td rowspan="2">15-35kg</td>
<td>250 mg</td>
<td>1<sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td>1<sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td>15 tabs</td>
</tr>
<tr class="line2">
<td>500 mg</td>
<td><sup>3</sup>⁄<sub>4</sub> tab</td>
<td></td>
<td><sup>3</sup>⁄<sub>4</sub> tab</td>
<td></td>
<td>7.5 tabs</td>
<tr>
<tr>
<td rowspan="2">8-15kg</td>
<td>250 mg</td>
<td>1 tab</td>
<td></td>
<td>1 tab</td>
<td></td>
<td>10 tabs</td>
</tr>
<tr>
<td>500 mg</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td>5 tabs</td>
</tr>
<tr class="line2">
<td rowspan="2">4-8kg</td>
<td>250 mg</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td>5 tabs</td>
</tr>
<tr class="line2">
<td>500 mg</td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
<td></td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
<td></td>
<td>2.5 tabs</td>
</tr>
<tr>
<td>< 4kg</td>
<td>Use Syrup</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table> </div>
<br />
<h4>Duration:</h4>
<ul>
<li>-Minimum 5 days</li>
<li>-10 days in case of genito-urinary infections in pregnant women or puerperal infections.</li>
</ul>
<h4>Precautions</h4>
<ul>
<li>-Do not administer if known allergy to penicillin’s family.</li>
<li>-Do not combine with other antibiotics without medical advice.</li>
</ul>
<h4>Remarks:</h4>
<ul>
<li>-Storage: bellow 30 º.</li>
</ul>
<p id="md4"></p>
<br /><br /><br />
<br />
<center>
<h3 >AMPICILLINE 250mg</h3>
<h3 >AMPICILLINE 500mg</h3>
</center>
<p>Antibiotic: prescription under medical supervision</p>
<br />
<p>(Britapen®, Penbritin®, Pentrexyl®, Totapen®…)</p>
<h4>Indications</h4>
<ul>
<li>-Respiratory infections with fever in children under 5 years.</li>
<li>-Genito-urinary infections, especially in pregnant women.</li>
<li>-Puerperal sepsis.</li>
</ul>
<h4>Dosage</h4>
<ul>
<li>-Child: 100mg/kg/day in 2 divided doses</li>
<li>-Adult: 2 to 4 g/ day in 2 divided doses</li>
<li>-In case of severe infections, doses may be increased and given 3 times daily.
A twice-daily prescription is generally preferable to ensure treatment compliance.</li>
</ul>
<div style="overflow-x:auto;"> <table border="1">
<thead>
<tr>
<th>Weight</th>
<th>Tablet</th>
<th>Morning</th>
<th>Noon</th>
<th>Evening</th>
<th>Duration</th>
<th>Total Treatment</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td rowspan="2">Adult</td>
<td>250 mg</td>
<td>4 to 8 tab</td>
<td></td>
<td>4 to 8 tab</td>
<td rowspan="11">Min 5 days</td>
<td>40 to 80 tabs</td>
</tr>
<tr>
<td>500 mg</td>
<td>2 to 4 tab</td>
<td></td>
<td>2 to 4 tab</td>
<td>20 to 40 tabs</td>
</tr>
<tr class="line2">
<td rowspan="2">15-35kg</td>
<td>250 mg</td>
<td>3 tab</td>
<td></td>
<td>3 tab</td>
<td>30 tabs</td>
</tr>
<tr class="line2">
<td>500 mg</td>
<td>1<sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td>1<sup>1</sup>⁄<sub>2</sub> tab</td>
<td>15 tabs</td>
<tr>
<tr>
<td rowspan="2">8-15kg</td>
<td>250 mg</td>
<td>2 tab</td>
<td></td>
<td>2 tab</td>
<td>20 tabs</td>
</tr>
<tr>
<td>500 mg</td>
<td>1 tab</td>
<td></td>
<td>1 tab</td>
<td>10 tabs</td>
</tr>
<tr class="line2">
<td rowspan="2">4-8kg</td>
<td>250 mg</td>
<td>1 tab</td>
<td></td>
<td>1 tab</td>
<td>10 tabs</td>
</tr>
<tr class="line2">
<td>500 mg</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td>5 tabs</td>
</tr>
<tr>
<td rowspan="2">< 4kg</td>
<td>250 mg</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td></td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td>5 tabs</td>
</tr>
<tr>
<td>500 mg</td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
<td></td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
<td>2.5 tabs</td>
</tr>
</tbody>
</table> </div>
<br />
<h4>Duration:</h4>
<ul>
<li>-Minimum 5 days</li>
<li>-10 days in case of genito-urinary infections in pregnant women or puerperal infections.</li>
</ul>
<h4>Precautions</h4>
<ul>
<li>-Take one or two hours after meal.</li>
<li>-Do not administer if known allergy to the product (penicillin’s family).</li>
<li>-Do not combine with other antibiotics without medical advice.</li>
<li>-For oral Ampicillin should preferably be replaced by oral amoxicillin,
which is used for the same indications as ampicillin but,
because of its better intestinal absorption, even on a full stomach, only half the dose is required.</li>
</ul>
<h4>Remarks:</h4>
<ul>
<li>-Storage: bellow 30 º.</li>
</ul>
<p id="md5"></p>
<br /><br /><br />
<center>
<h3 >ARTESUNATE + MEFLOQUINE (Anti- malaria)</h3>
</center>
<h4>A+M2® A+M3® A+M4®</h4>
<br />
<h4>Indications</h4>
<ul>
<li>-First line treatment of uncomplicated malaria.</li>
</ul>
<h4>Dosage</h4>
<h5>A+M2 (Artesunate 50mg + Mefloquine 250mg)</h5>
<p>Strict use for only children between 16 kg to 25 kg (or between 6 to 11 years.)</p>
<ul>
<li>-The 1st day: take 1 big tablet and 1 small tablet 2 times a day.</li>
<li>-The 2nd day: take 2 small tablets once daily.</li>
<li>-The 3rd day: take 2 small tablets once daily.</li>
</ul>
<h5>A+M3 (Artesunate 50mg + Mefloquine 250mg)</h5>
<p>Adult between 25 to 35 kg or between 11 to 15 years of age.</p>
<ul>
<li>-The 1st day :
The 1st take 2 big tablets and 2 small tables.
The 2nd take 1 big table and 1 small tablet.</li>
<li>-The 2nd day: take 3 small tablets once daily.</li>
<li>-The 3rd day: take 3 small tablets once daily.</li>
</ul>
<h5>A+M4 (Artesunate 50mg + Mefloquine 250mg)</h5>
<p>Adult of 35 kg or more than 35 kg (from 15 years of age.)</p>
<ul>
<li>-The 1st day: take 2 big tablets and 2 small tablets two times a day.</li>
<li>-The 2ndday: take 4 small tablets once daily.</li>
<li>-The 3rdday: take 4 small tablets once daily.</li>
</ul>
<h4>Side effects</h4>
<p>May cause: dizziness and vomiting.</p>
<br />
<h4>Duration:</h4>
<ul>
<li>-3 days</li>
</ul>
<h4>Precautions</h4>
<ul>
<p>Do not administer if:</p>
<li>-Cardio-pathy</li>
<li>-Epilepsies</li>
<li>-The first trimester of pregnancy should be avoided.</li>
</ul>
<p id="md51"></p>
<br /><br /><br />
<center>
<h3 >CARBON ABSORBANT 500mg (Digestion Problem)</h3>
</center>
<h4>(Carbophos®)</h4>
<br />
<h4>Indications</h4>
<ul>
<li>-Difficult digestion, particularly when associated with meteorism</li>
</ul>
<h4>Dosage</h4>
<p>Restricted to Adults: 1 to 2 tablets to be chewed and swallowed with a little water,
after meal and when pain is felt.</p>
<br />
<h4>Duration of treatment:</h4>
<ul>
<li>-according to the clinical response.</li>
</ul>
<h4>Precautions</h4>
<ul>
<p>Avoid giving to patients with a known allergy to one of its constituents.</p>
<li>-Pregnancy: avoid.</li>
<li>-Breast- feeding: avoid.</li>
</ul>
<h4>Remarks</h4>
<ul>
<li>-This medicinal product can reduce the effectiveness of many other medicinal products.</li>
<p>As a precaution, they should be taken two hours apart.</p>
<li>-Feces are black.</li>
<li>-Storage:</li>
</ul>
<p id="md52"></p>
<br /><br /><br />
<center>
<h3>CEFIXIME 200mg</h3>
</center>
<p>Antibiotic: prescription under medical supervision</p>
<h4>(Suprax®, Oroken 200 mg®)</h4>
<br />
<h4>Indications</h4>
<p>Susceptible infections, resistant to first-line antibiotics.</p>
<ul>
<li>•Bacterial pneumonia</li>
<li>•Sinusitis , recurrent acute otitis media</li>
<li>•Gonorrhea.</li>
<li>•Other Sexual Transmitted infections ( cervicitis, Pelvic Inflammatory Disease)</li>
</ul>
<h4>Dosage</h4>
<ul>
<li>-Child over 6 months : 8 mg / kg / day in 2 divided doses</li>
<li>-Adult: 200 mg to 400 mg /day in 2 divided doses.</li>
<li>-Gonorrhea: 400mg / day as a single dose.</li>
</ul>
<br />
<div style="overflow-x:auto;"> <table border="1">
<thead>
<tr>
<th>Weight</th>
<th>Tablet: 200mg</th>
<th>Morning</th>
<th>Evening</th>
<th>Duration</th>
<th>Total Treatment</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td>Adult</td>
<td>Anti-bacteria</td>
<td><sup>1</sup>⁄<sub>2</sub> to 1 tab</td>
<td><sup>1</sup>⁄<sub>2</sub> to 1 tab</td>
<td>Minimum 4 days</td>
<td>4 to 8 tabs</td>
</tr>
<tr>
<td></td>
<td>Gonorrhea</td>
<td colspan="2">2 tab</td>
<td>single dose</td>
<td>2 tabs</td>
</tr>
<tr class="line2">
<td>Children over 6 months</td>
<td colspan="3">8 mg/kg/day in 2 divided doses</td>
<td colspan="2">Minimum 4 days</td>
</tr>
</tbody>
</table> </div>
<br />
<h4>Duration</h4>
<ul>
<li>-Minimum 4 days</li>
<li>-Gonorrhea: single dose.</li>
</ul>
<h4>Side Effects</h4>
<ul>
<li>-May cause: gastro- intestinal diturbances, headache, dizziness.</li>
</ul>
<h4>Precautions</h4>
<ul>
<p>Avoid giving to patients with a known allergy to one of its constituents.</p>
<li>-Do not administer if known allergy to the same family of antibiotic (cephalosporin).</li>
<li>-Administer with caution to penicillin-allergic patients (amoxycilline, Ampicillin...)
5 to 10 % of them may also be allergic to cephalosporin</li>
</ul>
<h4>Remarks</h4>
<ul>
<li>-Reduce dosage in case of renal failure.</li>
<li>-Storage: - bellow 30 º</li>
</ul>
<p id="md6"></p>
<br /><br /><br />
<center>
<h3>CHLORPHENAMINE=CHLORPHENIRAMINE 4mg (Sedative antihistaminic)</h3>
</center>
<p>(Teldrin®, Trimeton®)</p>
<h4>Indications</h4>
<ul>
<li>-Allergic reactions due to drugs, insect bites, food…</li>
<li>-Contact dermatitis or seasonal allergy</li>
<li>-Dry cough of allergic origin</li>
</ul>
<h4>Dosage</h4>
<ul>
<li>-Child from 2 to 5 years: 1 mg every 4 to 6 hours; do not exceed 6 mg/ day</li>
<li>-Child from 6 to 12 years: 2 mg every 4 to 6 hours, do not exceed 12 mg/day</li>
<li>-Adult: 4 mg every 4 to 6 hours. Do not exceed 24 mg/day.</li>
</ul>
<div style="overflow-x:auto;"> <table border="1">
<thead>
<tr>
<th>Weight</th>
<th>Tablet</th>
<th>Morning</th>
<th>Noon</th>
<th>Evening</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td>Adult</td>
<td>4 mg</td>
<td>1 tab</td>
<td>1 tab</td>
<td>1 tab</td>
</tr>
<tr>
<td>15-35kg</td>
<td>4 mg</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
<td><sup>1</sup>⁄<sub>2</sub> tab</td>
</tr>
<tr>
<td>8-15kg</td>
<td>4 mg</td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
<td><sup>1</sup>⁄<sub>4</sub> tab</td>
</tr>
<tr>
<td>4-8kg</td>
<td>4 mg</td>
<td colspan="3" rowspan="2"> Do Not Administer</td>
</tr>
<tr>
<td>< 4kg</td>
<td>4 mg</td>
</tr>
</tbody>
</table> </div>
<br />
<h4>Duration:</h4>
<p>single dose for 1 to 3 days, accordingly to clinical response.</p>
<h4>Side effects</h4>
<p>May cause: drowsiness, administer with caution
when driving operating machinery.
</p>
<h4>Precautions</h4>
<ul>
<li>•-Do not administer to children under 2 years</li>
<li>•-Risk of increased sedation when combined with alcohol and drugs acting
on the central nervous system such as Diazepam,
Phenobarbital and Chlorpromazine.</li>
<li>•-Pregnancy: avoid </li>
<li>•-Breast-feeding: avoid. </li>
</ul>
<h4>Remarks:</h4>
<ul>
<li>-Storage: - below 30 ºC</li>
</ul>
<p id="md7"></p>
<br /><br /><br />
<center>
<h3 >CHLOROQUINE 100mg (Anti- malaria)</h3>
<h3 >CHLOROQUINE 150mg (Anti- malaria)</h3>
</center>
<br />
<p>(Aralen®, Nivaquine100 mg®, Resochin®)</p>
<h4>Indications</h4>
<ul>
<li>Uncomplicated Plasmodium malariae malaria or Plasmodium vivax malaria</li>
<li>-Genito-urinary infections, especially in pregnant women.</li>
<li>-Puerperal sepsis.</li>
</ul>
<h4>IMPORTANT</h4>
<ul>
<li>-Equivalence for salt and base:</li>
<li>-100 mg base = around 130 mg sulfate = around 160 mg phosphate or diphosphate</li>
<li>-150 mg base = around 200 mg sulfate = around 250 mg phosphate or diphosphate</li>
</ul>
<h4>Dosage</h4>
<h5>Child and adult</h5>
<ul>
<li>-•The 1st day: 10 mg base/kg one dose.</li>
<li>-•The 2nd day: 10 mg base/kg one dose.</li>
<li>-•The 3rd day: 5 mg base/kg one dose.</li>
</ul>
<div style="overflow-x:auto;"> <table border="1">
<thead>
<tr>
<th>Weight(kg)</th>
<th>Age(yrs)</th>
<th>Tablet(mg)</th>
<th>Day:1</th>
<th>Day:2</th>
<th>Day:3</th>
<th>Total Treatment</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td rowspan="2">16-25</td>
<td rowspan="2">6-11</td>
<td>100</td>
<td>3 tab</td>
<td>1<sup>1</sup>⁄<sub>2</sub>tab</td>
<td>1<sup>1</sup>⁄<sub>2</sub>tab</td>
<td>6 tabs</td>
</tr>
<tr>
<td>150</td>
<td>2 tab</td>
<td>1tab</td>
<td>1tab</td>
<td>4 tabs</td>
</tr>
<tr class="line2">
<td rowspan="2">25-35</td>
<td rowspan="2">11-15</td>
<td>100</td>
<td>4<sup>1</sup>⁄<sub>2</sub>tabs</td>
<td>3 tabs</td>
<td>1<sup>1</sup>⁄<sub>2</sub>tab</td>
<td>8 tabs</td>
</tr>
<tr class="line2">
<td>150</td>
<td>3 tabs</td>
<td>2 tabs</td>
<td>1 tab</td>
<td>6 tabs</td>
<tr>
<tr>
<td rowspan="2">35-45</td>
<td rowspan="2">15-18</td>
<td>100</td>
<td>6 tabs</td>
<td>3 tabs</td>
<td>3 tabs</td>
<td>12 tabs</td>
</tr>
<tr>
<td>150</td>
<td>4 tabs</td>
<td>2 tabs</td>
<td>2 tabs</td>
<td>8 tabs</td>
</tr>
<tr class="line2">
<td rowspan="2">>45</td>
<td rowspan="2">>18</td>
<td>100</td>
<td>6 tabs</td>
<td>6 tabs</td>
<td>6 tabs</td>
<td>15 tabs</td>
</tr>
<tr class="line2">
<td>150</td>
<td>4 tabs</td>
<td>4 tabs</td>
<td>2 tabs</td>
<td>10 tabs</td>
</tr>
</tbody>
</table> </div>
<br />
<h4>Duration:</h4>
<ul>
<li>3 days</li>
</ul>
<h4>Side effects</h4>
<p>May cause: vomiting and frequent headache but it does not cause a serious danger.</p>
<h4>Remarks</h4>
<ul>
<li>-Toxic dose:</li>
<p>•child :20 mg base/kg in one dose</p>
<p>•adult : 2 g base in one dose</p>
<li>-Never forget that the therapeutic oral dose is equivalent to a toxic dose when given by injection.</li>
<li>Storage: </li>
</ul>
<p id="md8"></p>
<br /><br /><br />
<center>
<h3>CIPROFLOXACIN 500mg</h3>
</center>
<p>Antibiotic: prescription under medical supervision</p>
<h4>(Ciflox®, Ciproxin®, Uniflox 500 mg®...</h4>
<br />
<h4>Indications</h4>
<ul>
<li>•-Lungs, Urine and intestinal infections.</li>
<li>•-Gonococcus infections.</li>
<li>•-Typhoid Fever.</li>
</ul>
<h4>Dosage</h4>
<ul>
<li>-Child: ciprofloxacin is not recommended (if doctors or medical staff consider
being essential: 10 to 30 mg/kg/day in 2 divided doses; for the treatment of
shigellosis dysenteries: 30 mg /kg /day in 2 divided doses).</li>
<li>-Adult: 500 to 1500 mg / day, depending on severity, in 2 divided doses.</li>
<p>•Shigellosis:1000 mg/ day in 2 divided doses for 5 days</p>
<p>•Gonorrhea: 500 mg as single dose.</p>
</ul>
<br />
<div style="overflow-x:auto;"> <table border="1">
<thead>
<tr>
<th>Weight</th>
<th>Tablet: 500mg</th>
<th>Morning</th>
<th>Noon</th>
<th>Evening</th>
<th>Duration</th>
<th>Total Treatment</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td rowspan="2">Adult</td>
<td>Shigellosis</td>
<td>1 tab</td>
<td></td>
<td>1 tab</td>
<td>5 days</td>
<td>10 tabs</td>
</tr>
<tr>
<td>child</td>
<td colspan="6">Do Not Administer</td>
</tr>
</tbody>
</table> </div>
<br />
<h4>Duration</h4>
<ul>
<li>-Minimum 5 days</li>
<li>-Gonorrhea: single dose.</li>
<li>-Typhoid Fever: 5-7days.</li>
</ul>
<h4>Side Effects</h4>
<p>May cause:</p>
<ul>
<li>-gastro-intestinal disturbance (nausea, vomiting, diarrhea)</li>
<li>-headache, dizziness, insomnia, hallucinations, convulsions</li>
<li>-arthralgia and myalgia, tendon failure</li>
</ul>
<h4>Precautions</h4>
<ul>
<li>-Pregnancy: CONTRA-INDICATED, except doctors or medical staff’s advice.</li>
<li>-Breast-feeding: CONTRA-INDICATED, except doctors or medical staff’s advice.</li>
</ul>
<h4>Remarks</h4>
<ul>
<li>-Avoid exposure to the sun.</li>
<li>-Drink a lot of liquid during the treatment.</li>
<li>-To avoid development of resistance, the use of ciprofloxacin must be restricted to infections resistant to first antibiotics.</li>
<li>-Antacids and iron salts decrease work of ciprofloxacin. Administer ciprofloxacin 2 hours before or 6 hours after these medications.</li>
<li>-Storage: - bellow 30 º</li>
</ul>
<p id="md9"></p>
<br /><br /><br />
<center>
<h3 >CO-TRIMOXAZOLE 120mg CO-TRIMOXAZOLE 480mg </h3>
<h3 >Sulfamethoxazole (SMX) +Trimethoprim (TMP)</h3>
</center>
<p>Antibiotic: prescription under medical supervision</p>
<br />
<p>(Bactrim®, Eusaprim®, Septrin®)</p>
<h4>Indications</h4>
<ul>
<li>-Lungs and Urine infections.</li>
<li>-Bacillary dysentery.</li>
<li>-Otitis.</li>
<li>-Gonococcus infections ,in areas where there is no Co-trimoxazole resistance</li>
<li>-Pneumocystis Carinii Pneumonia.</li>
</ul>
<h4>Dosage and duration</h4>
<ul>
<li>-Usual indications</li>
<p>•Child: CO-TRIMOXAZOLE: 36 mg/kg/day = (30 mg of Sulfamethoxazole (SMX) +
6 mg of Trimethoprim (TMP) / kg /day) in 2 divided doses for 5 days minimum.</p>
<p>-Adult: 2 to 4 g/ day in 2 divided doses
In case of acute respiratory-tract infections in child less than 5 years, double the dose.</p>
<p>•Adult: CO-TRIMOXAZOLE: 1920 mg/day=(1600 mg of Sulfamethoxazole (SMX) + 320 mg of Trimethoprim (TMP) /day) in 2 divided doses for 5 days minimum.</p>