de.oddb 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (431) hide show
  1. data/Guide.txt +3 -0
  2. data/History.txt +5 -0
  3. data/LICENCE.txt +339 -0
  4. data/Manifest.txt +430 -0
  5. data/README +423 -0
  6. data/README.txt +25 -0
  7. data/Rakefile +28 -0
  8. data/bin/admin +71 -0
  9. data/bin/exportd +44 -0
  10. data/bin/oddbd +33 -0
  11. data/data/fulltext/data/dicts/french/fulltext.aff +1057 -0
  12. data/data/fulltext/data/dicts/french/fulltext.dict +91189 -0
  13. data/data/fulltext/data/dicts/french/fulltext.stop +135 -0
  14. data/data/fulltext/data/dicts/german/fulltext.aff +1233 -0
  15. data/data/fulltext/data/dicts/german/fulltext.dict +287574 -0
  16. data/data/fulltext/data/dicts/german/fulltext.stop +133 -0
  17. data/data/fulltext/data/german_compound/README +15 -0
  18. data/data/fulltext/data/german_compound/compound.pl +63 -0
  19. data/data/fulltext/data/german_compound/german.stop +20 -0
  20. data/data/fulltext/data/ispell-german-compound.tar.gz +0 -0
  21. data/data/fulltext/redist/dict_french/Makefile +12 -0
  22. data/data/fulltext/redist/dict_french/README.french +1 -0
  23. data/data/fulltext/redist/dict_french/dict_french.sql.in +7 -0
  24. data/data/fulltext/redist/dict_french/dict_snowball.c +56 -0
  25. data/data/fulltext/redist/dict_french/french_stem.c +1222 -0
  26. data/data/fulltext/redist/dict_french/french_stem.h +16 -0
  27. data/data/fulltext/redist/dict_french/subinclude.h +2 -0
  28. data/data/fulltext/redist/dict_german/Makefile +12 -0
  29. data/data/fulltext/redist/dict_german/README.german +1 -0
  30. data/data/fulltext/redist/dict_german/dict_german.sql.in +7 -0
  31. data/data/fulltext/redist/dict_german/dict_snowball.c +56 -0
  32. data/data/fulltext/redist/dict_german/german_stem.c +527 -0
  33. data/data/fulltext/redist/dict_german/german_stem.h +16 -0
  34. data/data/fulltext/redist/dict_german/subinclude.h +1 -0
  35. data/data/fulltext/redist/french_stem.c +1222 -0
  36. data/data/fulltext/redist/french_stem.h +16 -0
  37. data/data/fulltext/redist/german_stem.c +527 -0
  38. data/data/fulltext/redist/german_stem.h +16 -0
  39. data/jobs/export_chde_xls +20 -0
  40. data/jobs/export_csv +20 -0
  41. data/jobs/export_fachinfo_yaml +20 -0
  42. data/jobs/export_patinfo_yaml +20 -0
  43. data/jobs/export_yaml +20 -0
  44. data/jobs/import_dimdi +15 -0
  45. data/jobs/import_gkv +19 -0
  46. data/jobs/import_pharma24 +15 -0
  47. data/jobs/import_pharmnet +30 -0
  48. data/jobs/import_whocc +18 -0
  49. data/lib/fixes/singular.rb +9 -0
  50. data/lib/fixes/yaml.rb +13 -0
  51. data/lib/oddb.rb +13 -0
  52. data/lib/oddb/business/company.rb +18 -0
  53. data/lib/oddb/business/grant_download.rb +27 -0
  54. data/lib/oddb/business/invoice.rb +75 -0
  55. data/lib/oddb/config.rb +112 -0
  56. data/lib/oddb/currency.rb +6 -0
  57. data/lib/oddb/drugs.rb +16 -0
  58. data/lib/oddb/drugs/active_agent.rb +37 -0
  59. data/lib/oddb/drugs/atc.rb +53 -0
  60. data/lib/oddb/drugs/composition.rb +41 -0
  61. data/lib/oddb/drugs/ddd.rb +24 -0
  62. data/lib/oddb/drugs/dose.rb +107 -0
  63. data/lib/oddb/drugs/galenic_form.rb +21 -0
  64. data/lib/oddb/drugs/galenic_group.rb +17 -0
  65. data/lib/oddb/drugs/package.rb +111 -0
  66. data/lib/oddb/drugs/part.rb +55 -0
  67. data/lib/oddb/drugs/product.rb +25 -0
  68. data/lib/oddb/drugs/sequence.rb +68 -0
  69. data/lib/oddb/drugs/substance.rb +31 -0
  70. data/lib/oddb/drugs/substance_group.rb +13 -0
  71. data/lib/oddb/drugs/unit.rb +12 -0
  72. data/lib/oddb/export.rb +4 -0
  73. data/lib/oddb/export/csv.rb +94 -0
  74. data/lib/oddb/export/l10n_sessions.rb +30 -0
  75. data/lib/oddb/export/rss.rb +44 -0
  76. data/lib/oddb/export/server.rb +137 -0
  77. data/lib/oddb/export/xls.rb +127 -0
  78. data/lib/oddb/export/yaml.rb +212 -0
  79. data/lib/oddb/html/state/download.rb +13 -0
  80. data/lib/oddb/html/state/drugs/admin/package.rb +190 -0
  81. data/lib/oddb/html/state/drugs/admin/product.rb +56 -0
  82. data/lib/oddb/html/state/drugs/admin/sequence.rb +253 -0
  83. data/lib/oddb/html/state/drugs/ajax/explain_ddd_price.rb +19 -0
  84. data/lib/oddb/html/state/drugs/ajax/explain_price.rb +19 -0
  85. data/lib/oddb/html/state/drugs/ajax/global.rb +18 -0
  86. data/lib/oddb/html/state/drugs/ajax/package_infos.rb +19 -0
  87. data/lib/oddb/html/state/drugs/ajax/remote_infos.rb +19 -0
  88. data/lib/oddb/html/state/drugs/atc_browser.rb +39 -0
  89. data/lib/oddb/html/state/drugs/atc_guidelines.rb +21 -0
  90. data/lib/oddb/html/state/drugs/compare.rb +52 -0
  91. data/lib/oddb/html/state/drugs/download_export.rb +18 -0
  92. data/lib/oddb/html/state/drugs/downloads.rb +42 -0
  93. data/lib/oddb/html/state/drugs/fachinfo.rb +21 -0
  94. data/lib/oddb/html/state/drugs/feedback.rb +91 -0
  95. data/lib/oddb/html/state/drugs/global.rb +270 -0
  96. data/lib/oddb/html/state/drugs/init.rb +18 -0
  97. data/lib/oddb/html/state/drugs/login.rb +17 -0
  98. data/lib/oddb/html/state/drugs/package.rb +32 -0
  99. data/lib/oddb/html/state/drugs/patinfo.rb +21 -0
  100. data/lib/oddb/html/state/drugs/products.rb +51 -0
  101. data/lib/oddb/html/state/drugs/result.rb +125 -0
  102. data/lib/oddb/html/state/global.rb +206 -0
  103. data/lib/oddb/html/state/global_predefine.rb +17 -0
  104. data/lib/oddb/html/state/limit.rb +17 -0
  105. data/lib/oddb/html/state/login.rb +56 -0
  106. data/lib/oddb/html/state/paypal/checkout.rb +97 -0
  107. data/lib/oddb/html/state/paypal/collect.rb +19 -0
  108. data/lib/oddb/html/state/paypal/download.rb +61 -0
  109. data/lib/oddb/html/state/paypal/redirect.rb +18 -0
  110. data/lib/oddb/html/state/register_download.rb +24 -0
  111. data/lib/oddb/html/state/register_export.rb +38 -0
  112. data/lib/oddb/html/state/register_poweruser.rb +17 -0
  113. data/lib/oddb/html/state/viral/admin.rb +79 -0
  114. data/lib/oddb/html/state/viral/poweruser.rb +16 -0
  115. data/lib/oddb/html/util/annotated_list.rb +39 -0
  116. data/lib/oddb/html/util/know_it_all.rb +28 -0
  117. data/lib/oddb/html/util/known_user.rb +55 -0
  118. data/lib/oddb/html/util/lookandfeel.rb +698 -0
  119. data/lib/oddb/html/util/need_all_input.rb +29 -0
  120. data/lib/oddb/html/util/session.rb +84 -0
  121. data/lib/oddb/html/util/sort.rb +72 -0
  122. data/lib/oddb/html/util/unsaved_helper.rb +20 -0
  123. data/lib/oddb/html/util/validator.rb +59 -0
  124. data/lib/oddb/html/view/ajax/json.rb +22 -0
  125. data/lib/oddb/html/view/alpha_header.rb +28 -0
  126. data/lib/oddb/html/view/document.rb +117 -0
  127. data/lib/oddb/html/view/download.rb +33 -0
  128. data/lib/oddb/html/view/drugs/admin/package.rb +245 -0
  129. data/lib/oddb/html/view/drugs/admin/product.rb +104 -0
  130. data/lib/oddb/html/view/drugs/admin/sequence.rb +305 -0
  131. data/lib/oddb/html/view/drugs/ajax/explain_ddd_price.rb +87 -0
  132. data/lib/oddb/html/view/drugs/ajax/explain_price.rb +61 -0
  133. data/lib/oddb/html/view/drugs/ajax/package_infos.rb +105 -0
  134. data/lib/oddb/html/view/drugs/ajax/remote_infos.rb +44 -0
  135. data/lib/oddb/html/view/drugs/atc_browser.rb +68 -0
  136. data/lib/oddb/html/view/drugs/atc_guidelines.rb +94 -0
  137. data/lib/oddb/html/view/drugs/compare.rb +95 -0
  138. data/lib/oddb/html/view/drugs/download_export.rb +28 -0
  139. data/lib/oddb/html/view/drugs/downloads.rb +128 -0
  140. data/lib/oddb/html/view/drugs/fachinfo.rb +46 -0
  141. data/lib/oddb/html/view/drugs/feedback.rb +235 -0
  142. data/lib/oddb/html/view/drugs/init.rb +51 -0
  143. data/lib/oddb/html/view/drugs/legend.rb +24 -0
  144. data/lib/oddb/html/view/drugs/package.rb +403 -0
  145. data/lib/oddb/html/view/drugs/patinfo.rb +46 -0
  146. data/lib/oddb/html/view/drugs/products.rb +97 -0
  147. data/lib/oddb/html/view/drugs/result.rb +296 -0
  148. data/lib/oddb/html/view/drugs/search.rb +33 -0
  149. data/lib/oddb/html/view/drugs/template.rb +15 -0
  150. data/lib/oddb/html/view/foot.rb +52 -0
  151. data/lib/oddb/html/view/google.rb +23 -0
  152. data/lib/oddb/html/view/google_ads.rb +40 -0
  153. data/lib/oddb/html/view/head.rb +78 -0
  154. data/lib/oddb/html/view/limit.rb +109 -0
  155. data/lib/oddb/html/view/list.rb +59 -0
  156. data/lib/oddb/html/view/login.rb +38 -0
  157. data/lib/oddb/html/view/navigation.rb +67 -0
  158. data/lib/oddb/html/view/offset_header.rb +35 -0
  159. data/lib/oddb/html/view/paypal/collect.rb +95 -0
  160. data/lib/oddb/html/view/paypal/redirect.rb +51 -0
  161. data/lib/oddb/html/view/paypal/register_form.rb +149 -0
  162. data/lib/oddb/html/view/register_download.rb +29 -0
  163. data/lib/oddb/html/view/register_export.rb +29 -0
  164. data/lib/oddb/html/view/register_poweruser.rb +29 -0
  165. data/lib/oddb/html/view/rss/feedback.rb +64 -0
  166. data/lib/oddb/html/view/rss_preview.rb +61 -0
  167. data/lib/oddb/html/view/search.rb +104 -0
  168. data/lib/oddb/html/view/snapback.rb +24 -0
  169. data/lib/oddb/html/view/template.rb +56 -0
  170. data/lib/oddb/import/dimdi.rb +583 -0
  171. data/lib/oddb/import/excel.rb +45 -0
  172. data/lib/oddb/import/gkv.rb +463 -0
  173. data/lib/oddb/import/importer.rb +36 -0
  174. data/lib/oddb/import/pharma24.rb +211 -0
  175. data/lib/oddb/import/pharmnet.rb +1186 -0
  176. data/lib/oddb/import/rtf.rb +409 -0
  177. data/lib/oddb/import/whocc.rb +148 -0
  178. data/lib/oddb/import/xml.rb +15 -0
  179. data/lib/oddb/model.rb +179 -0
  180. data/lib/oddb/persistence.rb +22 -0
  181. data/lib/oddb/persistence/odba.rb +32 -0
  182. data/lib/oddb/persistence/odba/business/company.rb +13 -0
  183. data/lib/oddb/persistence/odba/business/grant_download.rb +14 -0
  184. data/lib/oddb/persistence/odba/business/invoice.rb +15 -0
  185. data/lib/oddb/persistence/odba/drugs/atc.rb +15 -0
  186. data/lib/oddb/persistence/odba/drugs/galenic_form.rb +18 -0
  187. data/lib/oddb/persistence/odba/drugs/galenic_group.rb +13 -0
  188. data/lib/oddb/persistence/odba/drugs/package.rb +25 -0
  189. data/lib/oddb/persistence/odba/drugs/product.rb +13 -0
  190. data/lib/oddb/persistence/odba/drugs/sequence.rb +21 -0
  191. data/lib/oddb/persistence/odba/drugs/substance.rb +21 -0
  192. data/lib/oddb/persistence/odba/drugs/substance_group.rb +13 -0
  193. data/lib/oddb/persistence/odba/drugs/unit.rb +13 -0
  194. data/lib/oddb/persistence/odba/export.rb +26 -0
  195. data/lib/oddb/persistence/odba/model.rb +68 -0
  196. data/lib/oddb/persistence/odba/text/document.rb +11 -0
  197. data/lib/oddb/persistence/odba/util/code.rb +11 -0
  198. data/lib/oddb/persistence/odba/util/m10l_document.rb +13 -0
  199. data/lib/oddb/persistence/og.rb +16 -0
  200. data/lib/oddb/persistence/og/drugs/composition.rb +14 -0
  201. data/lib/oddb/persistence/og/drugs/product.rb +14 -0
  202. data/lib/oddb/persistence/og/drugs/sequence.rb +15 -0
  203. data/lib/oddb/persistence/og/model.rb +25 -0
  204. data/lib/oddb/persistence/og/util/multilingual.rb +13 -0
  205. data/lib/oddb/redist/rtf_tools/reader.rb +139 -0
  206. data/lib/oddb/remote/business/company.rb +17 -0
  207. data/lib/oddb/remote/drugs/active_agent.rb +27 -0
  208. data/lib/oddb/remote/drugs/atc.rb +31 -0
  209. data/lib/oddb/remote/drugs/dose.rb +8 -0
  210. data/lib/oddb/remote/drugs/galenic_form.rb +24 -0
  211. data/lib/oddb/remote/drugs/package.rb +128 -0
  212. data/lib/oddb/remote/drugs/part.rb +30 -0
  213. data/lib/oddb/remote/drugs/substance.rb +20 -0
  214. data/lib/oddb/remote/drugs/unit.rb +20 -0
  215. data/lib/oddb/remote/object.rb +36 -0
  216. data/lib/oddb/text/chapter.rb +23 -0
  217. data/lib/oddb/text/document.rb +42 -0
  218. data/lib/oddb/text/format.rb +37 -0
  219. data/lib/oddb/text/paragraph.rb +53 -0
  220. data/lib/oddb/text/picture.rb +89 -0
  221. data/lib/oddb/text/table.rb +68 -0
  222. data/lib/oddb/util.rb +9 -0
  223. data/lib/oddb/util/annotated_list.rb +37 -0
  224. data/lib/oddb/util/code.rb +69 -0
  225. data/lib/oddb/util/comparison.rb +36 -0
  226. data/lib/oddb/util/download.rb +17 -0
  227. data/lib/oddb/util/exporter.rb +8 -0
  228. data/lib/oddb/util/feedback.rb +23 -0
  229. data/lib/oddb/util/ipn.rb +53 -0
  230. data/lib/oddb/util/job.rb +23 -0
  231. data/lib/oddb/util/logger.rb +20 -0
  232. data/lib/oddb/util/m10l_document.rb +41 -0
  233. data/lib/oddb/util/mail.rb +87 -0
  234. data/lib/oddb/util/money.rb +64 -0
  235. data/lib/oddb/util/multilingual.rb +70 -0
  236. data/lib/oddb/util/quanty.rb +3 -0
  237. data/lib/oddb/util/quanty/fact.rb +242 -0
  238. data/lib/oddb/util/quanty/main.rb +164 -0
  239. data/lib/oddb/util/quanty/parse.rb +872 -0
  240. data/lib/oddb/util/quanty/units.dump +0 -0
  241. data/lib/oddb/util/server.rb +150 -0
  242. data/lib/oddb/util/smtp_tls.rb +58 -0
  243. data/lib/oddb/util/updater.rb +161 -0
  244. data/lib/oddb/util/ydim.rb +110 -0
  245. data/lib/oddb/util/yus.rb +46 -0
  246. data/test/business/test_company.rb +29 -0
  247. data/test/business/test_grant_download.rb +29 -0
  248. data/test/drugs/test_active_agent.rb +53 -0
  249. data/test/drugs/test_atc.rb +54 -0
  250. data/test/drugs/test_composition.rb +88 -0
  251. data/test/drugs/test_ddd.rb +22 -0
  252. data/test/drugs/test_dose.rb +189 -0
  253. data/test/drugs/test_galenic_form.rb +41 -0
  254. data/test/drugs/test_package.rb +172 -0
  255. data/test/drugs/test_part.rb +32 -0
  256. data/test/drugs/test_product.rb +31 -0
  257. data/test/drugs/test_sequence.rb +140 -0
  258. data/test/drugs/test_substance.rb +51 -0
  259. data/test/drugs/test_substance_group.rb +27 -0
  260. data/test/export/test_rss.rb +86 -0
  261. data/test/export/test_server.rb +163 -0
  262. data/test/export/test_xls.rb +146 -0
  263. data/test/export/test_yaml.rb +120 -0
  264. data/test/import/data/csv/products.csv +11 -0
  265. data/test/import/data/html/dimdi_index.html +400 -0
  266. data/test/import/data/html/gkv/Befreiungsliste_Arzneimittel_Versicherte.gkvnet +508 -0
  267. data/test/import/data/html/pharma24/1337397.html +754 -0
  268. data/test/import/data/html/pharma24/842756.html +570 -0
  269. data/test/import/data/html/pharma24/ac-page-10.html +2999 -0
  270. data/test/import/data/html/pharma24/ac-page-11.html +2999 -0
  271. data/test/import/data/html/pharma24/ac-page-12.html +2999 -0
  272. data/test/import/data/html/pharma24/ac-page-13.html +2999 -0
  273. data/test/import/data/html/pharma24/ac-page-14.html +2999 -0
  274. data/test/import/data/html/pharma24/ac-page-15.html +3011 -0
  275. data/test/import/data/html/pharma24/ac-page-16.html +3050 -0
  276. data/test/import/data/html/pharma24/ac-page-17.html +3285 -0
  277. data/test/import/data/html/pharma24/ac-page-18.html +3109 -0
  278. data/test/import/data/html/pharma24/ac-page-19.html +3126 -0
  279. data/test/import/data/html/pharma24/ac-page-2.html +3005 -0
  280. data/test/import/data/html/pharma24/ac-page-20.html +3007 -0
  281. data/test/import/data/html/pharma24/ac-page-21.html +2999 -0
  282. data/test/import/data/html/pharma24/ac-page-22.html +2999 -0
  283. data/test/import/data/html/pharma24/ac-page-23.html +3055 -0
  284. data/test/import/data/html/pharma24/ac-page-24.html +2999 -0
  285. data/test/import/data/html/pharma24/ac-page-25.html +3004 -0
  286. data/test/import/data/html/pharma24/ac-page-26.html +2999 -0
  287. data/test/import/data/html/pharma24/ac-page-27.html +3167 -0
  288. data/test/import/data/html/pharma24/ac-page-28.html +3236 -0
  289. data/test/import/data/html/pharma24/ac-page-29.html +3110 -0
  290. data/test/import/data/html/pharma24/ac-page-3.html +2999 -0
  291. data/test/import/data/html/pharma24/ac-page-30.html +2999 -0
  292. data/test/import/data/html/pharma24/ac-page-31.html +2999 -0
  293. data/test/import/data/html/pharma24/ac-page-32.html +2999 -0
  294. data/test/import/data/html/pharma24/ac-page-33.html +3001 -0
  295. data/test/import/data/html/pharma24/ac-page-34.html +2999 -0
  296. data/test/import/data/html/pharma24/ac-page-35.html +2999 -0
  297. data/test/import/data/html/pharma24/ac-page-36.html +2999 -0
  298. data/test/import/data/html/pharma24/ac-page-37.html +2999 -0
  299. data/test/import/data/html/pharma24/ac-page-38.html +3003 -0
  300. data/test/import/data/html/pharma24/ac-page-39.html +2999 -0
  301. data/test/import/data/html/pharma24/ac-page-4.html +2999 -0
  302. data/test/import/data/html/pharma24/ac-page-40.html +2999 -0
  303. data/test/import/data/html/pharma24/ac-page-41.html +2999 -0
  304. data/test/import/data/html/pharma24/ac-page-42.html +2999 -0
  305. data/test/import/data/html/pharma24/ac-page-43.html +2999 -0
  306. data/test/import/data/html/pharma24/ac-page-44.html +2999 -0
  307. data/test/import/data/html/pharma24/ac-page-45.html +2999 -0
  308. data/test/import/data/html/pharma24/ac-page-46.html +2999 -0
  309. data/test/import/data/html/pharma24/ac-page-47.html +2999 -0
  310. data/test/import/data/html/pharma24/ac-page-48.html +2999 -0
  311. data/test/import/data/html/pharma24/ac-page-49.html +2999 -0
  312. data/test/import/data/html/pharma24/ac-page-5.html +3168 -0
  313. data/test/import/data/html/pharma24/ac-page-50.html +2999 -0
  314. data/test/import/data/html/pharma24/ac-page-51.html +2999 -0
  315. data/test/import/data/html/pharma24/ac-page-52.html +3003 -0
  316. data/test/import/data/html/pharma24/ac-page-53.html +2999 -0
  317. data/test/import/data/html/pharma24/ac-page-54.html +3095 -0
  318. data/test/import/data/html/pharma24/ac-page-55.html +3041 -0
  319. data/test/import/data/html/pharma24/ac-page-56.html +2999 -0
  320. data/test/import/data/html/pharma24/ac-page-57.html +3001 -0
  321. data/test/import/data/html/pharma24/ac-page-58.html +3001 -0
  322. data/test/import/data/html/pharma24/ac-page-59.html +2999 -0
  323. data/test/import/data/html/pharma24/ac-page-6.html +3072 -0
  324. data/test/import/data/html/pharma24/ac-page-60.html +3001 -0
  325. data/test/import/data/html/pharma24/ac-page-61.html +3005 -0
  326. data/test/import/data/html/pharma24/ac-page-62.html +2999 -0
  327. data/test/import/data/html/pharma24/ac-page-63.html +3007 -0
  328. data/test/import/data/html/pharma24/ac-page-64.html +3007 -0
  329. data/test/import/data/html/pharma24/ac-page-65.html +2999 -0
  330. data/test/import/data/html/pharma24/ac-page-66.html +3011 -0
  331. data/test/import/data/html/pharma24/ac-page-67.html +3026 -0
  332. data/test/import/data/html/pharma24/ac-page-68.html +2999 -0
  333. data/test/import/data/html/pharma24/ac-page-69.html +3010 -0
  334. data/test/import/data/html/pharma24/ac-page-7.html +2999 -0
  335. data/test/import/data/html/pharma24/ac-page-70.html +3192 -0
  336. data/test/import/data/html/pharma24/ac-page-71.html +3133 -0
  337. data/test/import/data/html/pharma24/ac-page-72.html +2999 -0
  338. data/test/import/data/html/pharma24/ac-page-73.html +3227 -0
  339. data/test/import/data/html/pharma24/ac-page-74.html +3241 -0
  340. data/test/import/data/html/pharma24/ac-page-75.html +3227 -0
  341. data/test/import/data/html/pharma24/ac-page-76.html +3244 -0
  342. data/test/import/data/html/pharma24/ac-page-77.html +1164 -0
  343. data/test/import/data/html/pharma24/ac-page-8.html +2999 -0
  344. data/test/import/data/html/pharma24/ac-page-9.html +2999 -0
  345. data/test/import/data/html/pharma24/ac.html +2999 -0
  346. data/test/import/data/html/pharmnet/display.html +662 -0
  347. data/test/import/data/html/pharmnet/display1.html +625 -0
  348. data/test/import/data/html/pharmnet/display2.html +625 -0
  349. data/test/import/data/html/pharmnet/display3.html +625 -0
  350. data/test/import/data/html/pharmnet/display_tramal.html +634 -0
  351. data/test/import/data/html/pharmnet/empty_result.html +395 -0
  352. data/test/import/data/html/pharmnet/gate.html +246 -0
  353. data/test/import/data/html/pharmnet/index.html +258 -0
  354. data/test/import/data/html/pharmnet/paged_result_1.html +401 -0
  355. data/test/import/data/html/pharmnet/paged_result_2.html +401 -0
  356. data/test/import/data/html/pharmnet/result.html +401 -0
  357. data/test/import/data/html/pharmnet/search.html +865 -0
  358. data/test/import/data/html/pharmnet/search_filtered.html +182 -0
  359. data/test/import/data/html/whocc/A.html +56 -0
  360. data/test/import/data/html/whocc/A03.html +48 -0
  361. data/test/import/data/html/whocc/A03AB.html +48 -0
  362. data/test/import/data/html/whocc/A06AA.html +47 -0
  363. data/test/import/data/html/whocc/C03.html +47 -0
  364. data/test/import/data/html/whocc/login.html +77 -0
  365. data/test/import/data/mail/csv.mail +81 -0
  366. data/test/import/data/rtf/pharmnet/aarane.pi.rtf +648 -0
  367. data/test/import/data/rtf/pharmnet/ace_hemmer_ratio.pi.rtf +324 -0
  368. data/test/import/data/rtf/pharmnet/ace_hemmer_ratio.rtf +4816 -0
  369. data/test/import/data/rtf/pharmnet/acemetacin.pi.rtf +388 -0
  370. data/test/import/data/rtf/pharmnet/acemit.pi.rtf +240 -0
  371. data/test/import/data/rtf/pharmnet/acerbon.pi.rtf +1257 -0
  372. data/test/import/data/rtf/pharmnet/acetylcystein.pi.rtf +323 -0
  373. data/test/import/data/rtf/pharmnet/aciclo.pi.rtf +287 -0
  374. data/test/import/data/rtf/pharmnet/aciclovir.pi.rtf +236 -0
  375. data/test/import/data/rtf/pharmnet/actrapid.pi.rtf +322 -0
  376. data/test/import/data/rtf/pharmnet/amlodipin.pi.rtf +452 -0
  377. data/test/import/data/rtf/pharmnet/amlodipin.rtf +473 -0
  378. data/test/import/data/rtf/pharmnet/aspirin.pi.rtf +313 -0
  379. data/test/import/data/rtf/pharmnet/aspirin.rtf +781 -0
  380. data/test/import/data/rtf/pharmnet/baymycard.pi.rtf +447 -0
  381. data/test/import/data/rtf/pharmnet/omeprazol.pi.rtf +510 -0
  382. data/test/import/data/rtf/pharmnet/omeprazol.rtf +9216 -0
  383. data/test/import/data/rtf/pharmnet/paroxetin.pi.rtf +678 -0
  384. data/test/import/data/rtf/pharmnet/selegilin.pi.rtf +312 -0
  385. data/test/import/data/rtf/pharmnet/selegilin.rtf +683 -0
  386. data/test/import/data/rtf/pharmnet/valium.pi.rtf +387 -0
  387. data/test/import/data/txt/gkv/gkv_p1.txt +17 -0
  388. data/test/import/data/xls/darform_010706.xls +0 -0
  389. data/test/import/data/xls/fb010706.xls +0 -0
  390. data/test/import/data/xls/liste_zuzahlungsbefreite_arzneimittel_suchfunktion.xls +0 -0
  391. data/test/import/data/xls/wirkkurz_010406.xls +0 -0
  392. data/test/import/data/xml/ATC_2006.xml +47 -0
  393. data/test/import/data/xml/ATC_2006_ddd.xml +35 -0
  394. data/test/import/test_dimdi.rb +323 -0
  395. data/test/import/test_excel.rb +31 -0
  396. data/test/import/test_gkv.rb +260 -0
  397. data/test/import/test_pharma24.rb +112 -0
  398. data/test/import/test_pharmnet.rb +980 -0
  399. data/test/import/test_rtf.rb +37 -0
  400. data/test/import/test_whocc.rb +314 -0
  401. data/test/remote/drugs/test_active_agent.rb +36 -0
  402. data/test/selenium/selenium-server.jar +0 -0
  403. data/test/selenium/test_atc_browser.rb +121 -0
  404. data/test/selenium/test_atc_guidelines.rb +95 -0
  405. data/test/selenium/test_collect.rb +137 -0
  406. data/test/selenium/test_compare.rb +294 -0
  407. data/test/selenium/test_fachinfo.rb +128 -0
  408. data/test/selenium/test_feedback.rb +192 -0
  409. data/test/selenium/test_init.rb +64 -0
  410. data/test/selenium/test_limit.rb +304 -0
  411. data/test/selenium/test_login.rb +67 -0
  412. data/test/selenium/test_package.rb +516 -0
  413. data/test/selenium/test_patinfo.rb +128 -0
  414. data/test/selenium/test_product.rb +80 -0
  415. data/test/selenium/test_products.rb +141 -0
  416. data/test/selenium/test_search.rb +933 -0
  417. data/test/selenium/test_sequence.rb +513 -0
  418. data/test/selenium/unit.rb +190 -0
  419. data/test/stub/http_server.rb +144 -0
  420. data/test/stub/model.rb +173 -0
  421. data/test/suite.rb +15 -0
  422. data/test/test_model.rb +83 -0
  423. data/test/util/test_code.rb +74 -0
  424. data/test/util/test_ipn.rb +117 -0
  425. data/test/util/test_mail.rb +85 -0
  426. data/test/util/test_multilingual.rb +97 -0
  427. data/test/util/test_server.rb +94 -0
  428. data/test/util/test_updater.rb +130 -0
  429. data/test/util/test_ydim.rb +115 -0
  430. data/test/util/test_yus.rb +79 -0
  431. metadata +568 -0
@@ -0,0 +1,3026 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html dir="ltr" lang="de">
3
+ <head>
4
+ <title>ACC, ACC AKUT, ACCU CHEK, ACCUTREND, ACEBUTOLOL, ACEMETACIN, ACICLOVIR, ACETOCAUSTIN, ACONITUM, ACTONEL</title>
5
+ <meta name="description" content="ACC, ACC AKUT, ACCU CHEK, ACCUTREND, ACEBUTOLOL, ACEMETACIN, ACICLOVIR, ACETOCAUSTIN, ACONITUM, ACTONEL" />
6
+ <meta name="keywords" content="ACC, ACC AKUT, ACCU CHEK, ACCUTREND, ACEBUTOLOL, ACEMETACIN, ACICLOVIR, ACETOCAUSTIN, ACONITUM, ACTONEL" />
7
+ <meta name="page-topic" content="Versandapotheke, Apotheke, Onlineapotheke, Direktapotheke, Online Apotheke, Internetapotheke, Arzneimittel, Medikamente, g�nstig, preiswert, billig, pharma24" />
8
+ <meta name="publisher" content="www.iks-business.de" />
9
+ <meta name="author" content="www.iks-business.de" />
10
+ <meta name="company" content="www.pharma24.de" />
11
+ <meta name="robots" content="index,follow,NOODP" />
12
+ <meta name="revisit-after" content="1" />
13
+ <meta name="language" content="de" />
14
+ <meta name="reply-to" content="" />
15
+ <meta name="distribution" content="global" />
16
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
17
+ <meta http-equiv="Content-Style-Type" content="text/css" />
18
+ <META name="verify-v1" content="qzsAu5EUqYeO1m1U86GweTot5+rOxnrpMlR8agOuA1k=" />
19
+ <base href="http://www.apotheke-online-internet.de/" />
20
+ <link rel="stylesheet" type="text/css" href="templates/ph24shop/p24style.css" />
21
+
22
+ <link rel="SHORTCUT ICON" href="http://www.apotheke-online-internet.de/favicon.ico">
23
+
24
+ <!--
25
+ This OnlineStore is brought to you by XT-Commerce, Community made shopping
26
+ XTC is a free open source e-Commerce System
27
+ created by Mario Zanier & Guido Winger and licensed under GNU/GPL.
28
+ Information and contribution at http://www.xt-commerce.com
29
+ -->
30
+
31
+ <script language="JavaScript">
32
+ <!--
33
+ browser_name = navigator.appName;
34
+ browser_version = parseFloat(navigator.appVersion);
35
+ if (browser_name == "Netscape" && browser_version >= 3.0)
36
+ { rollover = 'true'; }
37
+ else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 4.0)
38
+ { rollover = 'true'; }
39
+ else { rollover = 'false'; }
40
+ if (rollover == 'true') {
41
+ grafik1=new Image();grafik1.src="templates/ph24shop/images/pharma24-I-Apotheke_05.gif";
42
+ grafik2=new Image();grafik2.src="templates/ph24shop/images/pharma24-I-Apotheke_05o.gif";
43
+ grafik3=new Image();grafik3.src="templates/ph24shop/images/pharma24-I-Apotheke_07.gif";
44
+ grafik4=new Image();grafik4.src="templates/ph24shop/images/pharma24-I-Apotheke_07o.gif";
45
+ grafik5=new Image();grafik5.src="templates/ph24shop/images/pharma24-I-Apotheke_09a.gif";
46
+ grafik6=new Image();grafik6.src="templates/ph24shop/images/pharma24-I-Apotheke_09a.gif";
47
+ grafik7=new Image();grafik7.src="templates/ph24shop/images/pharma24-I-Apotheke_11.gif";
48
+ grafik8=new Image();grafik8.src="templates/ph24shop/images/pharma24-I-Apotheke_11o.gif";
49
+ grafik9=new Image();grafik9.src="templates/ph24shop/images/pharma24-I-Apotheke_13.gif";
50
+ grafik10=new Image();grafik10.src="templates/ph24shop/images/pharma24-I-Apotheke_13o.gif";
51
+
52
+ }
53
+ function rein1(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
54
+ function raus1(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
55
+ function rein2(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
56
+ function raus2(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
57
+ function rein3(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
58
+ function raus3(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
59
+ function rein4(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
60
+ function raus4(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
61
+ function rein5(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
62
+ function raus5(img,ref) { if (rollover == 'true') { document.images[img].src = ref; } }
63
+ //-->
64
+ </script>
65
+
66
+ <script language="JavaScript">
67
+ <!-- Verstecken f�r �ltere Browser --
68
+ function surfto(form) {
69
+ var myindex=form.select1.selectedIndex
70
+ if (form.select1.options[myindex].value != "0") {
71
+ location=form.select1.options[myindex].value;}
72
+ }
73
+ // Ende Verstecken -->
74
+ </script>
75
+
76
+ <style type="text/css" media="screen"><!--
77
+ #Ebene1 { position: absolute; top: 5px; left: 5px; visibility: visible; display: block }
78
+ --></style>
79
+
80
+ <script type="text/javascript"><!--
81
+ var selected;
82
+ var submitter = null;
83
+
84
+ function submitFunction() {
85
+ submitter = 1;
86
+ }
87
+ function popupWindow(url) {
88
+ window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
89
+ }
90
+
91
+ function selectRowEffect(object, buttonSelect) {
92
+ if (!selected) {
93
+ if (document.getElementById) {
94
+ selected = document.getElementById('defaultSelected');
95
+ } else {
96
+ selected = document.all['defaultSelected'];
97
+ }
98
+ }
99
+
100
+ if (selected) selected.className = 'moduleRow';
101
+ object.className = 'moduleRowSelected';
102
+ selected = object;
103
+
104
+ // one button is not an array
105
+ if (document.getElementById('payment'[0])) {
106
+ document.getElementById('payment'[buttonSelect]).checked=true;
107
+ } else {
108
+ //document.getElementById('payment'[selected]).checked=true;
109
+ }
110
+ }
111
+
112
+ function rowOverEffect(object) {
113
+ if (object.className == 'moduleRow') object.className = 'moduleRowOver';
114
+ }
115
+
116
+ function rowOutEffect(object) {
117
+ if (object.className == 'moduleRowOver') object.className = 'moduleRow';
118
+ }
119
+
120
+ function popupImageWindow(url) {
121
+ window.open(url,'popupImageWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
122
+ }
123
+ //--></script>
124
+ <script type="text/javascript"><!--
125
+
126
+ function RequestObject() {
127
+ if (window.XMLHttpRequest) {
128
+ return new XMLHttpRequest();
129
+ } else if(window.ActiveXObject) {
130
+ return new ActiveXObject("Microsoft.XMLHTTP");
131
+ } else {
132
+ alert("Ihr Browser unterst�tzt diese Funktion leider nicht.");
133
+ }
134
+ }
135
+ var connect = RequestObject();
136
+ function storeText()
137
+ {
138
+ if (connect.readyState == 4 || connect.readyState == 0) {
139
+ var data = escape(document.getElementById('shout_text').value);
140
+ connect.open("GET", 'shoutbox.php?message=' + data, true);
141
+ connect.onreadystatechange = getResponse;
142
+ connect.send(null);
143
+ }
144
+ }
145
+ function getResponse() {
146
+ if (connect.readyState == 4) {
147
+ var data = connect.responseText;
148
+ document.getElementById('shoutboxArea').innerHTML = data;
149
+ }
150
+ }
151
+
152
+
153
+ /*----------------------------Suggest Code-------------------------*/
154
+ /*
155
+ This is the JavaScript file for the osCommerce AJAX Search Suggest
156
+
157
+ You may use this code in your own projects as long as this
158
+ copyright is left in place. All code is provided AS-IS.
159
+ This code is distributed in the hope that it will be useful,
160
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
161
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
162
+
163
+ For the rest of this code visit http://www.osCommerce-SSL.com
164
+
165
+ For a complete detailed tutorial on how this code works visit:
166
+ http://www.dynamicajax.com/fr/AJAX_Suggest_Tutorial-271_290_312.html
167
+
168
+ For more AJAX code and tutorials visit http://www.DynamicAJAX.com
169
+
170
+ Copyright 2006 Ryan Smith / 345 Technical / 345 Group.
171
+
172
+ Auf XT-Commerce portiert von TechWay (Steffen Decker) mit Unterst�tzung von Purecut (aus dem ecombase.de Forum)
173
+ Copyright 2006 @ TechWay, Steffen Decker
174
+ F�r Apothekenshops angepasst
175
+ Copyright 2007 @ IKS-Business GmbH, LRB
176
+ */
177
+ //Gets the browser specific XmlHttpRequest Object
178
+ function getXmlHttpRequestObject() {
179
+ if (window.XMLHttpRequest) {
180
+ return new XMLHttpRequest();
181
+ } else if(window.ActiveXObject) {
182
+ return new ActiveXObject("Microsoft.XMLHTTP");
183
+ } else {
184
+ alert("Your Browser Sucks!\nIt's about time to upgrade don't you think?");
185
+ }
186
+ }
187
+
188
+ //Our XmlHttpRequest object to get the auto suggest
189
+ var searchReq = getXmlHttpRequestObject();
190
+
191
+ //Called from keyup on the search textbox.
192
+ //Starts the AJAX request.
193
+ function searchSuggest() {
194
+ if (searchReq.readyState == 4 || searchReq.readyState == 0) {
195
+ var str = escape(document.getElementById('txtSearch').value);
196
+ searchReq.open("GET", 'searchSuggest.php?search=' + str, true);
197
+ searchReq.onreadystatechange = handleSearchSuggest;
198
+ searchReq.send(null);
199
+ }
200
+ }
201
+
202
+ //Called when the AJAX response is returned.
203
+ function handleSearchSuggest() {
204
+ if (searchReq.readyState == 4) {
205
+ var ss = document.getElementById('search_suggest')
206
+ ss.innerHTML = '<p align="left"><font size="2" face="arial" color="#3e7d52"><b>&nbsp Vielleicht suchen Sie nach:</b></font></p>';
207
+ var str = searchReq.responseText.split("\n");
208
+ for(i=0; i < str.length - 1; i++) {
209
+ //Build our element string. This is cleaner using the DOM, but
210
+ //IE doesn't support dynamically added attributes.
211
+ var suggest = '<div onmouseover="javascript:suggestOver(this);" ';
212
+ suggest += 'onmouseout="javascript:suggestOut(this);" ';
213
+ suggest += 'onclick="javascript:setSearch(this.innerHTML);" ';
214
+ suggest += 'class="suggest_link">' + str[i] + '</div>';
215
+ ss.innerHTML += suggest;
216
+ }
217
+ if (i==0) {
218
+ ss.style.visibility = "hidden";
219
+ } else {
220
+ ss.style.visibility = "visible";
221
+ }
222
+ //Schlie�en link einf�gen
223
+ ss.innerHTML += '<p align="left"><font size="2" face="arial" color="#3e7d52"><b>&nbsp"Dies ist keine vollst�ndige �bersicht"</b><br /><a href="advanced_search.php"><b>&nbsp Hier geht es zur Profi Suche >></b></a></font></p><p align="right"><a onmouseover="javascript:suggestOver(this);" onmouseout="javascript:suggestOut(this);" onClick="javascript:suggestClose(this);" class="suggest_link"><b>Fenster schlie�en</b></a></p>';
224
+ }
225
+ }
226
+ // Close Function
227
+ function suggestClose (div_value) {
228
+ document.getElementById('search_suggest').innerHTML = '';
229
+ document.getElementById('search_suggest').style.visibility = "hidden";
230
+ }
231
+
232
+ //Mouse over function
233
+ function suggestOver(div_value) {
234
+ div_value.className = 'suggest_link_over';
235
+ }
236
+ //Mouse out function
237
+ function suggestOut(div_value) {
238
+ div_value.className = 'suggest_link';
239
+ }
240
+ //Click function
241
+ function setSearch(value) {
242
+ // HTML-TAGS entfernen
243
+ var newvalue = value.replace(/<.*?>/gi, '');
244
+ //Kategorienamen entfernen (f�ngt mit &nbsp; an)
245
+ var Suche = newvalue.indexOf("&nbsp;");
246
+ var produktname = newvalue.substring(0,Suche);
247
+ document.getElementById('txtSearch').value = produktname;
248
+ document.getElementById('search_suggest').innerHTML = '';
249
+ document.getElementById('search_suggest').style.visibility = "hidden";
250
+ //zum Suchergebnis weiterleiten
251
+ top.location.href = "http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=" + produktname;
252
+ }
253
+ /*-------------------------End Suggest Code--------------------------------*/
254
+ //--></script>
255
+
256
+ <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
257
+ </script>
258
+ <script type="text/javascript">
259
+ _uacct="UA-312444-2";
260
+ _utimeout="3600";
261
+ urchinTracker();
262
+ </script>
263
+ </head>
264
+ <body>
265
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
266
+ <td colspan="5" width="800">
267
+ <table width="800" height="183" border="0" cellpadding="0" cellspacing="0" align="left">
268
+ <tr height="40">
269
+ <td colspan="5" rowspan="4"><a href="http://www.apotheke-online-internet.de"><img src="templates/ph24shop/images/pharma24-I-Apotheke_01.gif" alt="Pharma24.de apotheke-online-internet" width="179" height="70"></a></td>
270
+ <td colspan="15" align="center" valign="middle" height="40"><a href="http://www.pharma24.de" target="_top"><font size="1" color="#999999" face="Arial">Apotheke</font></a> - <a href="http://www.pharma24.de" target="_top"><font size="1" color="#999999" face="Arial">Internetapotheke</font></a> - <a href="http://www.pharma24.de" target="_top"><font size="1" color="#999999" face="Arial">Versandapotheke</font></a> - <a href="http://www.pharma24.de" target="_top"><font size="1" color="#999999" face="Arial">Onlineapotheke</font></a><br /><a href="http://www.pharma24.de" target="_top"><font size="1" color="#999999" face="Arial">Online Apotheke</font></a> - <a href="http://www.pharma24.de" target="_top"><font size="1" color="#999999" face="Arial">Internet Apotheke</font></a> - <a href="http://www.pharma24.de" target="_top"><font size="1" color="#999999" face="Arial">Versand Apotheke</font></a></td>
271
+ <td width="1" height="40"></td></tr><tr>
272
+ <td colspan="13"><img src="templates/ph24shop/images/pharma24-I-Apotheke_03.gif" width="602" height="2"></td>
273
+ <td colspan="2" rowspan="2"><img src="templates/ph24shop/images/pharma24-I-Apotheke_04.gif" width="19" height="21"></td>
274
+ <td width="1" height="2"></td></tr><tr>
275
+ <td rowspan="3" valign="top"><a href="http://www.pharma24.de"onMouseOver="rein1('platzhalter1',grafik2.src);" onMouseOut="raus1('platzhalter1',grafik1.src);"><img src="templates/ph24shop/images/pharma24-I-Apotheke_05.gif" width="89" height="98" border="0" name="platzhalter1" alt="Versandapotheke"></a></td>
276
+ <td rowspan="3" width="5" height="98"></td>
277
+ <td rowspan="3" valign="top"><a href="http://www.pharma24.de/beratung.html"onMouseOver="rein2('platzhalter2',grafik4.src);" onMouseOut="raus2('platzhalter2',grafik3.src);"><img src="templates/ph24shop/images/pharma24-I-Apotheke_07.gif" width="89" height="98" border="0" name="platzhalter2" alt="Beratung"></a></td>
278
+ <td rowspan="3" width="5" height="98"></td>
279
+ <td rowspan="3" valign="top"><a href=""onMouseOver="rein3('platzhalter3',grafik6.src);" onMouseOut="raus3('platzhalter3',grafik5.src);"><img src="templates/ph24shop/images/pharma24-I-Apotheke_09a.gif" width="90" height="98" border="0" name="platzhalter3" alt="Bestellen bei apotheke-online-internet"></a></td>
280
+ <td rowspan="3" width="3" height="98"></td>
281
+ <td rowspan="3" valign="top"><a href="http://www.pharma24.de/service.html"onMouseOver="rein4('platzhalter4',grafik8.src);" onMouseOut="raus4('platzhalter4',grafik7.src);"><img src="templates/ph24shop/images/pharma24-I-Apotheke_11.gif" width="82" height="98" border="0" name="platzhalter4" alt="Service"></a></td>
282
+ <td rowspan="3" width="3" height="98"></td>
283
+ <td rowspan="3" valign="top"><a href="http://www.pharma24.de/pharma24.html"onMouseOver="rein5('platzhalter5',grafik10.src);" onMouseOut="raus5('platzhalter5',grafik9.src);"><img src="templates/ph24shop/images/pharma24-I-Apotheke_13.gif" width="81" height="98" border="0" name="platzhalter5" alt="pharma24 intern"></a></td>
284
+ <td colspan="3" rowspan=3></td>
285
+ <td rowspan="5"><img src="templates/ph24shop/images/pharma24-I-Apotheke_15.gif" width="112" height="122"></td>
286
+ <td width="1" height="19"></td></tr><tr>
287
+ <td rowspan="4"></td>
288
+ <td rowspan="4"><img src="templates/ph24shop/images/pharma24-I-Apotheke_17.gif" width="2" height="103"></td>
289
+ <td width="1" height="9"></td></tr>
290
+ <tr height="70">
291
+ <td rowspan=3><img src="templates/ph24shop/images/pharma24-I-Apotheke_18.gif" width="2" height="94"></td>
292
+ <td colspan=4 align="center" valign="bottom" height="70"></td>
293
+ <td width="1" height="70"></td></tr><tr>
294
+ <td colspan="2" rowspan="2"></td>
295
+ <td colspan="2" rowspan="2"><img src="templates/ph24shop/images/pharma24-I-Apotheke_21.gif" width="19" height="24"></td>
296
+ <td colspan="9"><img src="templates/ph24shop/images/pharma24-I-Apotheke_22.gif" width="447" height="2"></td>
297
+ <td colspan="2" rowspan="2"><img src="templates/ph24shop/images/pharma24-I-Apotheke_23.gif" width="19" height="24"></td>
298
+ <td rowspan="2" width="24"></td>
299
+ <td width="1" height="2"></td></tr><tr>
300
+ <td class="main" colspan="9" rowspan="2" bgcolor="#b4e8ce"><font color="#3e7d52"><a href="http://www.apotheke-online-internet.de" class="headerNavigation2">Versandapotheke</a> &raquo; <a href="http://www.apotheke-online-internet.de/a.html" class="headerNavigation2">A</a> &raquo; <a href="http://www.apotheke-online-internet.de/a/ac.html" class="headerNavigation2">AC</a></font></td>
301
+ <td width="1" height="22"></td></tr><tr>
302
+ <td colspan=2 rowspan=2><img src="templates/ph24shop/images/pharma24-I-Apotheke_26.gif" width="19" height="21"></td>
303
+ <td></td>
304
+ <td><img src="templates/ph24shop/images/pharma24-I-Apotheke_28.gif" width="2" height="19"></td>
305
+ <td width="17" height="19" bgcolor="#b4e8ce"></td>
306
+ <td width="17" height="19" bgcolor="#b4e8ce"></td>
307
+ <td><img src="templates/ph24shop/images/pharma24-I-Apotheke_31.gif" width="2" height="19"></td>
308
+ <td colspan="2"></td>
309
+ <td colspan="2" rowspan="2"><img src="templates/ph24shop/images/pharma24-I-Apotheke_33.gif" width="19" height="21"></td>
310
+ <td width="1" height="19"></td></tr><tr>
311
+ <td colspan="16"><img src="templates/ph24shop/images/pharma24-I-Apotheke_34.gif" width="762" height="2"></td>
312
+ <td width="1" height="2"></td></tr><tr>
313
+ <td width="2" height="1"></td><td width="17" height="1"></td><td width="141" height="1"></td><td width="2" height="1"></td><td width="17" height="1"></td><td width="89" height="1"></td><td width="5" height="1"></td><td width="89" height="1"></td><td width="5" height="1"></td><td width="90" height="1"></td><td width="3" height="1"></td><td width="82" height="1"></td><td width="3" height="1"></td><td width="81" height="1"></td><td width="17" height="1"></td><td width="2" height="1"></td><td width="24" height="1"></td><td width="112" height="1"></td><td width="17" height="1"></td><td width="2" height="1"></td><td></td>
314
+ </tr></table></td></tr><tr height="5">
315
+ <td colspan="5" height="5" width="800"></td>
316
+ </tr><tr><td colspan="5">
317
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
318
+ <tr>
319
+ <td valign="middle" height="50" bgcolor="#FFF6DD" style="border-top: 1px solid; border-color: #3e7d52; border-bottom: 1px solid; border-color: #3e7d52; border-left: 1px solid; border-color: #3e7d52; border-right: 1px solid; border-color: #3e7d52;">
320
+ <table border="0" cellpadding="0" cellspacing="0">
321
+ <tr>
322
+ <td height="1" width="5"></td>
323
+ <td class="main">
324
+ <td class="main">
325
+
326
+ <form id="quick_find" action="http://www.apotheke-online-internet.de/advanced_search_result.php" method="get">
327
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
328
+ <tr>
329
+ <td align="left">
330
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
331
+ <tr>
332
+ <td class="boxText" width="11%" valign="left"><input type="text" name="keywords" id="txtSearch"
333
+
334
+ onclick="if(this.value==this.defaultValue)
335
+ this.value='';return false" onblur="if( this.value.replace(/\s/g, '') == '' )
336
+ this.value=this.defaultValue; return false"
337
+ onkeyup="searchSuggest();" size="15" autocomplete="off" style="width: -30px" /><div id="search_suggest"></div></td>
338
+ <td><img src="templates/ph24shop/images/clear.gif" alt="" height="1" width="4" border="0"></td>
339
+ <td class="boxText" width="89%" valign="right"><input type="image" src="templates/ph24shop/buttons/german/button_add_quick.gif" alt="Suchen" title=" Suchen " /></td>
340
+ </tr>
341
+ <tr>
342
+ <td colspan="5" class="boxText_suche"><font color="#3e7d52">Produktsuche</font></td>
343
+ </tr>
344
+ </table>
345
+ </td>
346
+ </tr>
347
+ </table>
348
+ </form>
349
+ </td>
350
+ <td class="main" width="344">
351
+ <table width="286" border="0" cellpadding="0" cellspacing="0">
352
+ <tr>
353
+ <td bgcolor="#FFF6DD"><img src="templates/ph24shop/grafiken/clear.gif" height="20" width="20" border="0"></td>
354
+ <td bgcolor="#FFF6DD">
355
+ </td></tr><tr><td></td>
356
+ <td class="boxText_suche"></td>
357
+ </tr></table></td>
358
+ <td class="main" valign="bottom" width="370"><div align="right"><font color="#3e7d52"><a href="login.php">Anmelden</a> |<a href="https://www.apotheke-online-internet.de/account.php">Ihr Konto</a> | <a href="https://www.apotheke-online-internet.de/shopping_cart.php">Warenkorb</a> | <a href="https://www.apotheke-online-internet.de/checkout_shipping.php">Kasse&nbsp;</a></font></div></td>
359
+ </tr></table></td></tr></table></td></tr>
360
+ <tr height="5">
361
+ <td colspan="5" height="5" width="800"></td>
362
+ </tr></table>
363
+ <div style="width:800px;margin:0px auto;">
364
+ <div id="left">
365
+ <table style="border-left: 1px solid; border-color: #3e7d52; border-right: 1px solid; border-color: #3e7d52; border-top: 1px solid; border-color: #3e7d52; border-bottom: 1px solid; border-color: #3e7d52;" width="153" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="#d3f1e2">
366
+ <tr>
367
+ <td align="left" valign="top" bgcolor="#ffffff">
368
+ <table align="center" width="145" border="0" cellpadding="0" cellspacing="0" bgcolor="#d3f1e2">
369
+ <tr>
370
+ <td class="infoBoxHeading">
371
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
372
+ <tr>
373
+ <td colspan="3" align="left" valign="top" bgcolor="#ffffff" width="145" height="5"></td>
374
+ </tr>
375
+ <tr>
376
+ <td align="left" valign="top" bgcolor="#3e7d52" width="3" height="20"></td>
377
+ <td align="left" valign="top" bgcolor="#3e7d52" width="12" height="20"></td>
378
+ <td align="left" valign="middle" bgcolor="#3e7d52" width="130" height="20" class="boxText_anwendungen">Anwendungsgebiete</td>
379
+ </tr>
380
+ </table>
381
+ </td>
382
+ </tr>
383
+ <tr>
384
+ <td align="left">
385
+ <table width="145" border="0" cellpadding="0" cellspacing="0">
386
+ <tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/allergie-und-heuschnupfen.html">Allergie und Heuschnupfen</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/erkaeltung-und-abwehr.html">Erkaeltung und Abwehr</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/herz-und-kreislauf.html">Herz und Kreislauf</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/hauterkrankungen.html">Hauterkrankungen</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/schmerzmittel.html">Schmerzmittel</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/magen--darm--verdauung.html">Magen, Darm, Verdauung</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/schlaf-und-nerven.html">Schlaf und Nerven</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/durchblutung-und-venen.html">Durchblutung und Venen</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/niere--blase--prostata.html">Niere, Blase, Prostata</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/augen-und-ohren.html">Augen und Ohren</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/fuer-die-frau.html">Fuer die Frau</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/fuer-den-mann.html">Fuer den Mann</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/fuer-senioren.html">Fuer Senioren</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/haar-und-nagel.html">Haar und Nagel</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/vitamine-und-mineralien.html">Vitamine und Mineralien</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/tee-und-kraeuter.html">Tee und Kraeuter</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/rauchenentwoehnung.html">Rauchenentwoehnung</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/schuessler-salze.html">Schuessler Salze</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/mund-und-rachen.html">Mund und Rachen</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/zahngesundheit-und-zahnschoenheit.html">Zahngesundheit und Zahnschoenheit</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/sport--massage--sauna.html">Sport, Massage, Sauna</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/homoeopathie.html">Homoeopathie</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/diabetiker-bedarf.html">Diabetiker Bedarf</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/ernaehrung-und-diaet.html">Ernaehrung und Diaet</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/abnehmen--diaet--schlankheit.html">Abnehmen, Diaet, Schlankheit</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/kosmetik.html">Kosmetik</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/sonnenschutz.html">Sonnenschutz</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/hygiene.html">Hygiene</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/familienplanung.html">Familienplanung</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/baby-und-kind.html">Baby und Kind</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/impfstoffe---immunglobuline.html">Impfstoffe / Immunglobuline</a></b><br /></td></tr><tr><td height="20" class="categoryRow"><b><a id="link3" href="http://www.apotheke-online-internet.de/praxisbedarf-klinikversorgung.html">Praxisbedarf Klinikversorgung</a></b><br /></td></tr>
387
+ </table>
388
+ </td>
389
+ </tr>
390
+ </table></td>
391
+ </tr>
392
+ <tr>
393
+ <td align="center" valign="top" bgcolor="#ffffff"><a href="https://secure.bvdva.de/registrierte-versandapotheke.html?tx_pharmacyextender_pi1[id]=49" target="_blank"><img src="templates/ph24shop/images/guetesiegel_bvdva.gif" border="0" /></a></td>
394
+ </tr>
395
+ </table>
396
+ </div>
397
+ <div id="right">
398
+ <table style="border-left: 1px solid; border-color: #3e7d52; border-right: 1px solid; border-color: #3e7d52; border-top: 1px solid; border-color: #3e7d52; border-bottom: 1px solid; border-color: #3e7d52;" width="150" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white">
399
+ <tr>
400
+ <td>
401
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white">
402
+ <tr>
403
+ <td align="left" valign="top">
404
+
405
+ <table width="100%" border="0" cellpadding="2" cellspacing="0">
406
+ <tr>
407
+ <td align="center" height="5"></td>
408
+ </tr>
409
+ <tr>
410
+ <td class="infoBoxHeading_admin"><table width="100%" border="0" cellpadding="0" cellspacing="0">
411
+ <tr>
412
+ <td class="infoBoxHeading_admin">Kunden Login! </td>
413
+ <td width="10">&nbsp;</td>
414
+ </tr>
415
+ </table></td>
416
+ </tr>
417
+ <tr>
418
+ <td class="infoBox_login" align="left"> <table width="95%" border="0" cellpadding="2" cellspacing="0">
419
+ <tr>
420
+ <td class="boxText"><form id="loginbox" method="post" action="https://www.apotheke-online-internet.de/login.php/action/process">
421
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
422
+ <tr>
423
+ <td class="main">eMail-Adresse:</td>
424
+ </tr>
425
+ <tr>
426
+ <td><input type="text" name="email_address" size="18" maxlength="50" /></td>
427
+ </tr>
428
+ <tr>
429
+ <td class="main">Passwort:</td>
430
+ </tr>
431
+ <tr>
432
+ <td><table width="100%" border="0" cellpadding="2" cellspacing="0">
433
+ <tr>
434
+ <td><input type="password" name="password" size="10" maxlength="30" /> </td>
435
+ </tr>
436
+ <tr>
437
+ <td><input type="image" src="templates/ph24shop/buttons/german/button_login_small.gif" alt="Anmelden" title=" Anmelden " /></td>
438
+ </tr>
439
+ </table></td>
440
+ </tr>
441
+ </table></form></td>
442
+ </tr>
443
+ </table></td>
444
+ </tr>
445
+ <tr>
446
+ <td class="infoBox_login" align="left"><a href="https://www.apotheke-online-internet.de/password_double_opt.php">Passwort vergessen?</a></td>
447
+ </tr>
448
+ <tr>
449
+ <td align="center"><img src="templates/ph24shop/images/1-pix-gruen-dunkel.gif" alt="" height="1" width="142" border="0"></td>
450
+ </tr>
451
+ </table>
452
+ </td>
453
+ </tr>
454
+ <tr>
455
+ <td height="140" align="center" valign="middle" style="border-top: 1px solid; border-color: #3e7d52;"><img src="templates/ph24shop/images/ISO-9001_logo.gif" height="119" width="140" border="0"></td>
456
+ </tr>
457
+ <tr>
458
+ <td height="130" align="center" valign="middle" style="border-top: 1px solid; border-color: #3e7d52;">
459
+ <img src="templates/ph24shop/images/quickssl_anim.gif" height="55" width="115" border="0">
460
+ <font size="1" face="Verdana, Arial, Helvetica, sans-serif"><br />
461
+ Unsere Apotheke garantiert sichere &Uuml;bertragung Ihrer pers&ouml;nlichen Daten durch SSL Verschl&uuml;sselung<br />
462
+ </font></td>
463
+ </tr>
464
+ </table>
465
+ </td>
466
+ </tr>
467
+ </table>
468
+ </div>
469
+ <div id="contindex2">
470
+
471
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
472
+ <tr>
473
+ <td align="center" valign="top">
474
+ <P align=center>
475
+ <A id="link1" href="a.html" target=_top>A</A>
476
+ <A id="link1" href="b.html" target=_top>B</A>
477
+ <A id="link1" href="c.html" target=_top>C</A>
478
+ <A id="link1" href="d.html" target=_top>D</A>
479
+ <A id="link1" href="e.html" target=_top>E</A>
480
+ <A id="link1" href="f.html" target=_top>F</A>
481
+ <A id="link1" href="g.html" target=_top>G</A>
482
+ <A id="link1" href="h.html" target=_top>H</A>
483
+ <A id="link1" href="i.html" target=_top>I</A>
484
+ <A id="link1" href="j.html" target=_top>J</A>
485
+ <A id="link1" href="k.html" target=_top>K</A>
486
+ <A id="link1" href="l.html" target=_top>L</A>
487
+ <A id="link1" href="m.html" target=_top>M</A>
488
+ <A id="link1" href="n.html" target=_top>N</A>
489
+ <A id="link1" href="o.html" target=_top>O</A>
490
+ <A id="link1" href="p.html" target=_top>P</A>
491
+ <A id="link1" href="q.html" target=_top>Q</A>
492
+ <A id="link1" href="r.html" target=_top>R</A>
493
+ <A id="link1" href="s.html" target=_top>S</A>
494
+ <A id="link1" href="t.html" target=_top>T</A>
495
+ <A id="link1" href="u.html" target=_top>U</A>
496
+ <A id="link1" href="v.html" target=_top>V</A>
497
+ <A id="link1" href="w.html" target=_top>W</A>
498
+ <A id="link1" href="x.html" target=_top>X</A>
499
+ <A id="link1" href="y.html" target=_top>Y</A>
500
+ <A id="link1" href="z.html" target=_top>Z</A>
501
+ </P>
502
+ </td>
503
+ </tr>
504
+ </table>
505
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
506
+ <tr valign="top">
507
+ <td class="boxText_cattitel3"><br />Artikel AC</td>
508
+ <td align="right">&nbsp;</td>
509
+ </tr>
510
+ </table>
511
+ <br />
512
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
513
+ <tr>
514
+ <td class="main" align="right"><table border="0" cellspacing="0" cellpadding="0">
515
+ <tr>
516
+ <td class="main" align="right">Hersteller:&nbsp;</td>
517
+ <td class="main" align="right"><form id="filter" action="index.php" method="get"><input type="hidden" name="cat" value="4002" /><input type="hidden" name="sort" value="" /><input type="hidden" name="XTCsid" value="08aa82f91938318a47021d30d3da3451" /><select name="filter_id" onchange="this.form.submit()"><option value="" selected="selected">Alle Hersteller</option><option value="7197">1 A PHARMA GMBH</option><option value="22890">A.PFLUEGER GMBH & CO.</option><option value="164">ABRO-VERTRIEB</option><option value="51">ACA MUELLER/ADAG PHARM</option><option value="33">ACRI.TEC AG</option><option value="2273">ACTIPART GMBH</option><option value="2891">ACTIVITA GMBH</option><option value="278">AFRAMED GMBH</option><option value="388">ALHOPHARM ARZNEIM.GMBH</option><option value="387">ALIUD PHARMA GMBH&CO.</option><option value="34530">ALLCURA NATURHEIL.GMBH</option><option value="410">ALLERGOPHARMA</option><option value="425">ALLPHARM VERTR.GMBH</option><option value="483">ALPENLAND GMBH & CO.KG</option><option value="464">ALPHA C.PHARM GMBH</option><option value="355">ALVA GMBH</option><option value="562">AMAZONAS HANDELS GMBH</option><option value="1419">AMO GERMANY GMBH</option><option value="571">AMOSVITAL GMBH</option><option value="561">AMT AROMANDO MED.TECH.</option><option value="710">ANHALT GMBH</option><option value="48295">ANTHROPOSAN HOMOEOPH.</option><option value="1029">APEIRON HAN.GMBH&CO.KG</option><option value="3172">APOZEN VERTRIEBS GMBH</option><option value="3526">ARCHEA-PHARMA GMBH</option><option value="886">ARNIMONT PHARMA GMBH</option><option value="443">ASTRAZENECA GMBH</option><option value="1170">AURICA GMBH</option><option value="1498">AXICORP PHARMA GMBH</option><option value="689">AXISIS GMBH</option><option value="1210">AZETT GMBH & CO. KG</option><option value="3750">B I PHARMA GMBH&CO.KG</option><option value="1906">B+P BEATMUN. PROD.GMBH</option><option value="684">BASICS GMBH</option><option value="2482">BAUERFEIND</option><option value="1243">BAXTER ONCOLOGY GMBH</option><option value="2850">BERAGENA</option><option value="1996">BERCO ARZNEIM. GMBH</option><option value="225">BESTPHAGO GMBH</option><option value="3025">BETAPHARM ARZNEIM.GMBH</option><option value="36260">BIOL.HEILM. HEEL GMBH</option><option value="2581">BIOMET DEUTSCHL.GMBH</option><option value="3143">BIOS NATURPRODUKTE</option><option value="3465">BIOVIEL GMBH</option><option value="1325">BRINKMANN MED.DR.JUNGH</option><option value="795">BSN MEDICAL GMBH</option><option value="2564">CAK PHARMA VERTR.GMBH</option><option value="2014">CARELINE PRODUKTE OHG</option><option value="3451">CLEMENT CLARKE INT.LTD</option><option value="5090">COMBUSTIN GMBH</option><option value="2407">COPAVIT GMBH</option><option value="5177">COSMAS PHARMA E.K.</option><option value="31142">CT-ARZNEIMITTEL GMBH</option><option value="18160">DAIICHI SANKYO D GMBH</option><option value="17702">DAVIMED PHARMA GMBH</option><option value="5735">DELTASELECT GMBH</option><option value="1154">DENK PHARMA GMBH&CO.KG</option><option value="5854">DERMATICA EXCLUSIV</option><option value="36245">DHU-ARZNEIMITTEL</option><option value="5985">DIAPRAX GMBH</option><option value="2553">DICEL GMBH</option><option value="6066">DM-VERTRIEB</option><option value="6064">DMC INTER.TRADING GMBH</option><option value="6068">DOCPHARM GMBH&CO KG AA</option><option value="25890">DR BECKMANN</option><option value="34860">DR WINZER PHARMA GMBH</option><option value="48325">DR. JUNGHANS MEDICAL</option><option value="25870">DR.E.RITSERT</option><option value="22860">DR.R.PFLEGER GMBH</option><option value="25240">DR.RECKEWEG & CO.</option><option value="7741">EMRA-MED ARZNEIM.GMBH</option><option value="7655">ESPARA GMBH</option><option value="931">ETHICON GMBH BER. AWC</option><option value="72670">EURIM PHARM ARZNEIM.</option><option value="7358">EUROP-VERTRIEB</option><option value="8251">FINK & WALTER GMBH</option><option value="2343">FITNE GMBH</option><option value="3593">G & M NATURW.GMBH&COKG</option><option value="3795">GEORG GEYER GMBH & CO.</option><option value="9420">GERKE PHARMA GMBH</option><option value="1258">GLOBALIS-OASE D. NATUR</option><option value="189">GOODLIFE</option><option value="9820">GPP PHARMA GMBH</option><option value="10113">GRY-PHARMA GMBH</option><option value="36255">HANOSAN GMBH</option><option value="3482">HANS BISCHOFF GMBH</option><option value="10812">HECHT PHARMA GMBH</option><option value="1784">HEIMOMED HEINZE</option><option value="955">HEMOPHARM GMBH</option><option value="11950">HEUMANN PH GMBH&CO. KG</option><option value="36279">HEVERT-ARZNEIM.</option><option value="11965">HEXAL AG</option><option value="2913">HIRUNDO PRODUCTS</option><option value="2947">HOEFINGHOFF DEUT.VITAL</option><option value="12655">HOMOEOPATH.LAB.GUDJONS</option><option value="619">HOSPIRA DEUTSCHL. GMBH</option><option value="3210">INTACT GMBH</option><option value="3842">IREBO PHARMA</option><option value="41200">J.MOELLER OBSTSAFTKELT</option><option value="36280">JURA GOLLWITZER KG</option><option value="23806">KESSEL MARKETING&VERTR</option><option value="1426">KLOESTERL-APOTHEKE</option><option value="15685">KOHLPHARMA GMBH</option><option value="2604">KREIENBAUM NEOSCI.GMBH</option><option value="16075">KREPHA GMBH</option><option value="16130">KREWEL MEUSELBACH GMBH</option><option value="16430">KSK-PHARMA VERTR AG</option><option value="1367">KYBERG VERT.GMBH&CO.KG</option><option value="475">LABORATORIUM DR. DEPPE</option><option value="2876">LANGER VITAL GMBH</option><option value="17459">LEENSKRON U.SCHROEDER</option><option value="17558">LEMASOR GMBH</option><option value="17760">LINDOPHARM GMBH</option><option value="36315">MADAUS GMBH</option><option value="18545">MAGNET-ACTIV GMBH</option><option value="627">MANEVA GMBH</option><option value="19090">MEDENTA GMBH</option><option value="19103">MEDI GMBH & CO. KG</option><option value="3193">MEDICOPHARM GMBH</option><option value="19141">MEDICURA NATURPRODUKTE</option><option value="48285">MEDPHANO ARZNEIM.GMBH</option><option value="19706">MEDTRONIC MINIMED</option><option value="998">MELASAN PROD.&VER.GMBH</option><option value="1389">MEPHA GMBH</option><option value="3710">MERCATURA HOLDING GMBH</option><option value="19563">MEVITA HANDELS GMBH</option><option value="2152">MIROMED GMBH</option><option value="19985">MPV-TRUMA GMBH</option><option value="20045">MTK PHARMA VERTR GMBH</option><option value="223">NATURPRODUKTE BERG</option><option value="20670">NESTMANN PHARMA GMBH</option><option value="21177">NOVARTIS PHARMA GMBH</option><option value="21150">NOVO NORDISK PHARMA</option><option value="4490">NYCOMED DEUTSCHLAND GM</option><option value="26110">NYCOMED DTL GMBH/OTC</option><option value="21790">OPTI-ARZNEI GMBH</option><option value="25990">P & G PHARMACEUTICALS</option><option value="75312">PARAM</option><option value="36350">PASCOE PHARM PRAEP</option><option value="2566">PFIZER PHARMA GMBH</option><option value="23140">PHARM-ALLERGAN GMBH</option><option value="22751">PHARMA PETER</option><option value="23233">PHARMA STULLN GMBH</option><option value="23060">PHARMADROG GMBH</option><option value="48550">PHARMAWERK WEINBOEHLA</option><option value="23360">PHOENIX LABORATORIUM</option><option value="23745">PP NATURE-BALANCE</option><option value="106">PRIMAVERA LIFE GMBH</option><option value="3473">PROMECON GMBH</option><option value="25610">RAN NOVESIA AG</option><option value="25137">RATIOPHARM GMBH</option><option value="25239">RCO PHARMA GMBH</option><option value="3002">REGENWALD VITAL GMBH</option><option value="22345">RIEMSER ARZNEIM AG</option><option value="3760">ROCHE DIAGNOSTICS GMBH</option><option value="26866">SANATUR GMBH</option><option value="26933">SANITAS GMBH & CO. KG</option><option value="12340">SANOFI-AVENTIS DT.GMBH</option><option value="28490">SCHEFFLER</option><option value="28765">SCHLOSS-APOTHEKE</option><option value="4245">SMITH & NEPHEW GMBH</option><option value="19089">SMITHS MEDICAL DT.GMBH</option><option value="2922">SPAGYROS GMBH</option><option value="5905">SPORLASTIC GMBH</option><option value="50042">STADA GMBH</option><option value="29650">STADAPHARM GMBH</option><option value="36415">STAUFEN PHARMA</option><option value="30315">STRATHMANN GMBH&CO KG</option><option value="28032">SUPPLEMENTA CORPOR.BV</option><option value="28068">SYNOMED GMBH</option><option value="31015">TAKEDA PHARMA GMBH</option><option value="3609">TAPMED GMBH</option><option value="31130">TEMMLER PHARMA</option><option value="2375">TIC MEDIZIN.GMBH&CO.KG</option><option value="31342">TIERRA VERDE</option><option value="31510">TROMMSDORFF GMBH+CO.KG</option><option value="542">TRUW ARZNEIMITTEL</option><option value="13493">VALEANT PHARM.GER.GMBH</option><option value="67">VELAG PHARMA GMBH</option><option value="1633">VITAMINSHOP DIRECT INC</option><option value="36430">WALA-HEILMITTEL GMBH</option><option value="34197">WARKENTIN</option><option value="36440">WELEDA AG</option><option value="34525">WEPA APOTHEKENBEDARF</option><option value="23264">WESTEN PHARMA GMBH</option></select></form>
518
+ </td>
519
+ </tr>
520
+ </table> </td>
521
+ </tr>
522
+ </table>
523
+ <br />
524
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
525
+ <tr>
526
+ <td align="center">
527
+ <table width="100%" border="0" cellpadding="0" cellspacing="0" style="border-top: 2px solid; border-color: #d4d4d4;">
528
+ <tr>
529
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
530
+ </td>
531
+ <td width="5"></td>
532
+ <td align="left"><h2><a title="Weitere Informationen zu ACTIPUR Creme get. heller Teint" href="http://www.apotheke-online-internet.de/a/ac/p4534744_actipur-creme-get--heller-teint.html">ACTIPUR Creme get. heller Teint</a></h2></td>
533
+ </tr>
534
+ <tr>
535
+ <td></td>
536
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
537
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
538
+ <tr>
539
+ <td align="right" class="main2">
540
+ <strong> 12,10 EUR </strong><br />
541
+ </td>
542
+ </tr>
543
+ <tr>
544
+ <td align="right" class="main">
545
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
546
+ </td>
547
+ </tr>
548
+ </table>
549
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
550
+ <tr height="15">
551
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
552
+ </td>
553
+ <td align="left" valign="top" height="15">
554
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
555
+ Rezeptfrei</font> </font></a>
556
+ </td>
557
+ </tr>
558
+ <tr height="15">
559
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
560
+ </td>
561
+ <td align="left" valign="top" height="15" class="productinfosmall">
562
+ 30 ml Creme
563
+ </td>
564
+ </tr>
565
+ <tr height="15">
566
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
567
+ </td>
568
+ <td align="left" valign="top" height="15" class="productinfosmall">
569
+ <a class="liste" title="ACTIPUR Creme get. heller Teint von DERMATICA EXCLUSIV" href="advanced_search_result.php?keywords=DERMATICA EXCLUSIV">DERMATICA EXCLUSIV</a>
570
+ </td>
571
+ </tr>
572
+ </table>
573
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
574
+ <tr>
575
+ <td>
576
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
577
+ <tr>
578
+ <td>
579
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
580
+ <tr>
581
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
582
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
583
+ <td valign="left" class="main" width="200">Sofort</td>
584
+ </tr>
585
+ </table>
586
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
587
+ <tr>
588
+ <td><div align="right">
589
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4534744/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTIPUR Creme get. heller Teint' bestellen" title=" 1 x 'ACTIPUR Creme get. heller Teint' bestellen " /></a>
590
+ </div>
591
+ </td>
592
+ </tr>
593
+ </table>
594
+ </td>
595
+ </tr>
596
+ </table>
597
+ </td>
598
+ </tr>
599
+ </table>
600
+ </td>
601
+ </tr>
602
+ <tr>
603
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
604
+ </td>
605
+ <td width="5"></td>
606
+ <td align="left"><h2><a title="Weitere Informationen zu ACTIPUR Gel" href="http://www.apotheke-online-internet.de/a/ac/p4534721_actipur-gel.html">ACTIPUR Gel</a></h2></td>
607
+ </tr>
608
+ <tr>
609
+ <td></td>
610
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
611
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
612
+ <tr>
613
+ <td align="right" class="main2">
614
+ <strong> 8,95 EUR </strong><br />
615
+ </td>
616
+ </tr>
617
+ <tr>
618
+ <td align="right" class="main">
619
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
620
+ </td>
621
+ </tr>
622
+ </table>
623
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
624
+ <tr height="15">
625
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
626
+ </td>
627
+ <td align="left" valign="top" height="15">
628
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
629
+ Rezeptfrei</font> </font></a>
630
+ </td>
631
+ </tr>
632
+ <tr height="15">
633
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
634
+ </td>
635
+ <td align="left" valign="top" height="15" class="productinfosmall">
636
+ 30 ml Gel
637
+ </td>
638
+ </tr>
639
+ <tr height="15">
640
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
641
+ </td>
642
+ <td align="left" valign="top" height="15" class="productinfosmall">
643
+ <a class="liste" title="ACTIPUR Gel von DERMATICA EXCLUSIV" href="advanced_search_result.php?keywords=DERMATICA EXCLUSIV">DERMATICA EXCLUSIV</a>
644
+ </td>
645
+ </tr>
646
+ </table>
647
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
648
+ <tr>
649
+ <td>
650
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
651
+ <tr>
652
+ <td>
653
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
654
+ <tr>
655
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
656
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
657
+ <td valign="left" class="main" width="200">Sofort</td>
658
+ </tr>
659
+ </table>
660
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
661
+ <tr>
662
+ <td><div align="right">
663
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4534721/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTIPUR Gel' bestellen" title=" 1 x 'ACTIPUR Gel' bestellen " /></a>
664
+ </div>
665
+ </td>
666
+ </tr>
667
+ </table>
668
+ </td>
669
+ </tr>
670
+ </table>
671
+ </td>
672
+ </tr>
673
+ </table>
674
+ </td>
675
+ </tr>
676
+ <tr>
677
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
678
+ </td>
679
+ <td width="5"></td>
680
+ <td align="left"><h2><a title="Weitere Informationen zu ACTIRA 400 mg Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p6055769_actira-400-mg-filmtabletten.html">ACTIRA 400 mg Filmtabletten</a></h2></td>
681
+ </tr>
682
+ <tr>
683
+ <td></td>
684
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
685
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
686
+ <tr>
687
+ <td align="right" class="main2">
688
+ <strong> 36,56 EUR </strong><br />
689
+ </td>
690
+ </tr>
691
+ <tr>
692
+ <td align="right" class="main">
693
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
694
+ </td>
695
+ </tr>
696
+ </table>
697
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
698
+ <tr height="15">
699
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
700
+ </td>
701
+ <td align="left" valign="top" height="15">
702
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
703
+ <a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
704
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b>&nbsp;&nbsp;Info!</b>
705
+ </font></a>
706
+ </td>
707
+ </tr>
708
+ <tr height="15">
709
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
710
+ </td>
711
+ <td align="left" valign="top" height="15" class="productinfosmall">
712
+ 5 St Filmtabletten
713
+ </td>
714
+ </tr>
715
+ <tr height="15">
716
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Reimport:
717
+ </td>
718
+ <td align="left" valign="top" height="15" class="productinfosmall">
719
+ ja
720
+ </td>
721
+ </tr>
722
+ <tr height="15">
723
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
724
+ </td>
725
+ <td align="left" valign="top" height="15" class="productinfosmall">
726
+ <a class="liste" title="ACTIRA 400 mg Filmtabletten von EURIM PHARM ARZNEIM." href="advanced_search_result.php?keywords=EURIM PHARM ARZNEIM.">EURIM PHARM ARZNEIM.</a>
727
+ </td>
728
+ </tr>
729
+ </table>
730
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
731
+ <tr>
732
+ <td>
733
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
734
+ <tr>
735
+ <td>
736
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
737
+ <tr>
738
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
739
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
740
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
741
+ </tr>
742
+ </table>
743
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
744
+ <tr>
745
+ <td><div align="right">
746
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/6055769/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTIRA 400 mg Filmtabletten' bestellen" title=" 1 x 'ACTIRA 400 mg Filmtabletten' bestellen " /></a>
747
+ </div>
748
+ </td>
749
+ </tr>
750
+ </table>
751
+ </td>
752
+ </tr>
753
+ </table>
754
+ </td>
755
+ </tr>
756
+ </table>
757
+ </td>
758
+ </tr>
759
+ <tr>
760
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
761
+ </td>
762
+ <td width="5"></td>
763
+ <td align="left"><h2><a title="Weitere Informationen zu ACTIRA 400 mg Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p6055781_actira-400-mg-filmtabletten.html">ACTIRA 400 mg Filmtabletten</a></h2></td>
764
+ </tr>
765
+ <tr>
766
+ <td></td>
767
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
768
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
769
+ <tr>
770
+ <td align="right" class="main2">
771
+ <strong> 47,12 EUR </strong><br />
772
+ </td>
773
+ </tr>
774
+ <tr>
775
+ <td align="right" class="main">
776
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
777
+ </td>
778
+ </tr>
779
+ </table>
780
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
781
+ <tr height="15">
782
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
783
+ </td>
784
+ <td align="left" valign="top" height="15">
785
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
786
+ <a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
787
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b>&nbsp;&nbsp;Info!</b>
788
+ </font></a>
789
+ </td>
790
+ </tr>
791
+ <tr height="15">
792
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
793
+ </td>
794
+ <td align="left" valign="top" height="15" class="productinfosmall">
795
+ 7 St Filmtabletten
796
+ </td>
797
+ </tr>
798
+ <tr height="15">
799
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Reimport:
800
+ </td>
801
+ <td align="left" valign="top" height="15" class="productinfosmall">
802
+ ja
803
+ </td>
804
+ </tr>
805
+ <tr height="15">
806
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
807
+ </td>
808
+ <td align="left" valign="top" height="15" class="productinfosmall">
809
+ <a class="liste" title="ACTIRA 400 mg Filmtabletten von EURIM PHARM ARZNEIM." href="advanced_search_result.php?keywords=EURIM PHARM ARZNEIM.">EURIM PHARM ARZNEIM.</a>
810
+ </td>
811
+ </tr>
812
+ </table>
813
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
814
+ <tr>
815
+ <td>
816
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
817
+ <tr>
818
+ <td>
819
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
820
+ <tr>
821
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
822
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
823
+ <td valign="left" class="main" width="200">Sofort</td>
824
+ </tr>
825
+ </table>
826
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
827
+ <tr>
828
+ <td><div align="right">
829
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/6055781/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTIRA 400 mg Filmtabletten' bestellen" title=" 1 x 'ACTIRA 400 mg Filmtabletten' bestellen " /></a>
830
+ </div>
831
+ </td>
832
+ </tr>
833
+ </table>
834
+ </td>
835
+ </tr>
836
+ </table>
837
+ </td>
838
+ </tr>
839
+ </table>
840
+ </td>
841
+ </tr>
842
+ <tr>
843
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
844
+ </td>
845
+ <td width="5"></td>
846
+ <td align="left"><h2><a title="Weitere Informationen zu ACTIRA 400 mg Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p6055798_actira-400-mg-filmtabletten.html">ACTIRA 400 mg Filmtabletten</a></h2></td>
847
+ </tr>
848
+ <tr>
849
+ <td></td>
850
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
851
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
852
+ <tr>
853
+ <td align="right" class="main2">
854
+ <strong> 62,56 EUR </strong><br />
855
+ </td>
856
+ </tr>
857
+ <tr>
858
+ <td align="right" class="main">
859
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
860
+ </td>
861
+ </tr>
862
+ </table>
863
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
864
+ <tr height="15">
865
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
866
+ </td>
867
+ <td align="left" valign="top" height="15">
868
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
869
+ <a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
870
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b>&nbsp;&nbsp;Info!</b>
871
+ </font></a>
872
+ </td>
873
+ </tr>
874
+ <tr height="15">
875
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
876
+ </td>
877
+ <td align="left" valign="top" height="15" class="productinfosmall">
878
+ 10 St Filmtabletten
879
+ </td>
880
+ </tr>
881
+ <tr height="15">
882
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Reimport:
883
+ </td>
884
+ <td align="left" valign="top" height="15" class="productinfosmall">
885
+ ja
886
+ </td>
887
+ </tr>
888
+ <tr height="15">
889
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
890
+ </td>
891
+ <td align="left" valign="top" height="15" class="productinfosmall">
892
+ <a class="liste" title="ACTIRA 400 mg Filmtabletten von EURIM PHARM ARZNEIM." href="advanced_search_result.php?keywords=EURIM PHARM ARZNEIM.">EURIM PHARM ARZNEIM.</a>
893
+ </td>
894
+ </tr>
895
+ </table>
896
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
897
+ <tr>
898
+ <td>
899
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
900
+ <tr>
901
+ <td>
902
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
903
+ <tr>
904
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
905
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
906
+ <td valign="left" class="main" width="200">Sofort</td>
907
+ </tr>
908
+ </table>
909
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
910
+ <tr>
911
+ <td><div align="right">
912
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/6055798/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTIRA 400 mg Filmtabletten' bestellen" title=" 1 x 'ACTIRA 400 mg Filmtabletten' bestellen " /></a>
913
+ </div>
914
+ </td>
915
+ </tr>
916
+ </table>
917
+ </td>
918
+ </tr>
919
+ </table>
920
+ </td>
921
+ </tr>
922
+ </table>
923
+ </td>
924
+ </tr>
925
+ <tr>
926
+ <td rowspan="2" align="left" valign="top">&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac/p1098774_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html"><img src="images/product_images/thumbnail_images/1098774.gif" alt="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." /></a> <br />
927
+ </td>
928
+ <td width="5"></td>
929
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p1098774_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
930
+ </tr>
931
+ <tr>
932
+ <td></td>
933
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
934
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
935
+ <tr>
936
+ <td align="right" class="main2">
937
+ <strong> 79,50 EUR </strong><br />
938
+ </td>
939
+ </tr>
940
+ <tr>
941
+ <td align="right" class="main">
942
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
943
+ </td>
944
+ </tr>
945
+ </table>
946
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
947
+ <tr height="15">
948
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
949
+ </td>
950
+ <td align="left" valign="top" height="15">
951
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
952
+ Rezeptfrei</font> </font></a>
953
+ </td>
954
+ </tr>
955
+ <tr height="15">
956
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
957
+ </td>
958
+ <td align="left" valign="top" height="15" class="productinfosmall">
959
+ 10 St Kompressen
960
+ </td>
961
+ </tr>
962
+ <tr height="15">
963
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
964
+ </td>
965
+ <td align="left" valign="top" height="15" class="productinfosmall">
966
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von ETHICON GMBH BER. AWC" href="advanced_search_result.php?keywords=ETHICON GMBH BER. AWC">ETHICON GMBH BER. AWC</a>
967
+ </td>
968
+ </tr>
969
+ </table>
970
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
971
+ <tr>
972
+ <td>
973
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
974
+ <tr>
975
+ <td>
976
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
977
+ <tr>
978
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
979
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
980
+ <td valign="left" class="main" width="200">Sofort</td>
981
+ </tr>
982
+ </table>
983
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
984
+ <tr>
985
+ <td><div align="right">
986
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1098774/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
987
+ </div>
988
+ </td>
989
+ </tr>
990
+ </table>
991
+ </td>
992
+ </tr>
993
+ </table>
994
+ </td>
995
+ </tr>
996
+ </table>
997
+ </td>
998
+ </tr>
999
+ <tr>
1000
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1001
+ </td>
1002
+ <td width="5"></td>
1003
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p1455820_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
1004
+ </tr>
1005
+ <tr>
1006
+ <td></td>
1007
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1008
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1009
+ <tr>
1010
+ <td align="right" class="main2">
1011
+ <strong> 62,31 EUR </strong><br />
1012
+ </td>
1013
+ </tr>
1014
+ <tr>
1015
+ <td align="right" class="main">
1016
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1017
+ </td>
1018
+ </tr>
1019
+ </table>
1020
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1021
+ <tr height="15">
1022
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1023
+ </td>
1024
+ <td align="left" valign="top" height="15">
1025
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1026
+ Rezeptfrei</font> </font></a>
1027
+ </td>
1028
+ </tr>
1029
+ <tr height="15">
1030
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1031
+ </td>
1032
+ <td align="left" valign="top" height="15" class="productinfosmall">
1033
+ 10 St Kompressen
1034
+ </td>
1035
+ </tr>
1036
+ <tr height="15">
1037
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1038
+ </td>
1039
+ <td align="left" valign="top" height="15" class="productinfosmall">
1040
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von KOHLPHARMA GMBH" href="advanced_search_result.php?keywords=KOHLPHARMA GMBH">KOHLPHARMA GMBH</a>
1041
+ </td>
1042
+ </tr>
1043
+ </table>
1044
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1045
+ <tr>
1046
+ <td>
1047
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1048
+ <tr>
1049
+ <td>
1050
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1051
+ <tr>
1052
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1053
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1054
+ <td valign="left" class="main" width="200">Sofort</td>
1055
+ </tr>
1056
+ </table>
1057
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1058
+ <tr>
1059
+ <td><div align="right">
1060
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1455820/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
1061
+ </div>
1062
+ </td>
1063
+ </tr>
1064
+ </table>
1065
+ </td>
1066
+ </tr>
1067
+ </table>
1068
+ </td>
1069
+ </tr>
1070
+ </table>
1071
+ </td>
1072
+ </tr>
1073
+ <tr>
1074
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1075
+ </td>
1076
+ <td width="5"></td>
1077
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p1455889_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
1078
+ </tr>
1079
+ <tr>
1080
+ <td></td>
1081
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1082
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1083
+ <tr>
1084
+ <td align="right" class="main2">
1085
+ <strong> 62,31 EUR </strong><br />
1086
+ </td>
1087
+ </tr>
1088
+ <tr>
1089
+ <td align="right" class="main">
1090
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1091
+ </td>
1092
+ </tr>
1093
+ </table>
1094
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1095
+ <tr height="15">
1096
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1097
+ </td>
1098
+ <td align="left" valign="top" height="15">
1099
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1100
+ Rezeptfrei</font> </font></a>
1101
+ </td>
1102
+ </tr>
1103
+ <tr height="15">
1104
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1105
+ </td>
1106
+ <td align="left" valign="top" height="15" class="productinfosmall">
1107
+ 10 St Kompressen
1108
+ </td>
1109
+ </tr>
1110
+ <tr height="15">
1111
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1112
+ </td>
1113
+ <td align="left" valign="top" height="15" class="productinfosmall">
1114
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von MTK PHARMA VERTR GMBH" href="advanced_search_result.php?keywords=MTK PHARMA VERTR GMBH">MTK PHARMA VERTR GMBH</a>
1115
+ </td>
1116
+ </tr>
1117
+ </table>
1118
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1119
+ <tr>
1120
+ <td>
1121
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1122
+ <tr>
1123
+ <td>
1124
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1125
+ <tr>
1126
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1127
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1128
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1129
+ </tr>
1130
+ </table>
1131
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1132
+ <tr>
1133
+ <td><div align="right">
1134
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1455889/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
1135
+ </div>
1136
+ </td>
1137
+ </tr>
1138
+ </table>
1139
+ </td>
1140
+ </tr>
1141
+ </table>
1142
+ </td>
1143
+ </tr>
1144
+ </table>
1145
+ </td>
1146
+ </tr>
1147
+ <tr>
1148
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1149
+ </td>
1150
+ <td width="5"></td>
1151
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p1591173_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
1152
+ </tr>
1153
+ <tr>
1154
+ <td></td>
1155
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1156
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1157
+ <tr>
1158
+ <td align="right" class="main2">
1159
+ <strong> 59,49 EUR </strong><br />
1160
+ </td>
1161
+ </tr>
1162
+ <tr>
1163
+ <td align="right" class="main">
1164
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1165
+ </td>
1166
+ </tr>
1167
+ </table>
1168
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1169
+ <tr height="15">
1170
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1171
+ </td>
1172
+ <td align="left" valign="top" height="15">
1173
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1174
+ Rezeptfrei</font> </font></a>
1175
+ </td>
1176
+ </tr>
1177
+ <tr height="15">
1178
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1179
+ </td>
1180
+ <td align="left" valign="top" height="15" class="productinfosmall">
1181
+ 10 St Kompressen
1182
+ </td>
1183
+ </tr>
1184
+ <tr height="15">
1185
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1186
+ </td>
1187
+ <td align="left" valign="top" height="15" class="productinfosmall">
1188
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von EMRA-MED ARZNEIM.GMBH" href="advanced_search_result.php?keywords=EMRA-MED ARZNEIM.GMBH">EMRA-MED ARZNEIM.GMBH</a>
1189
+ </td>
1190
+ </tr>
1191
+ </table>
1192
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1193
+ <tr>
1194
+ <td>
1195
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1196
+ <tr>
1197
+ <td>
1198
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1199
+ <tr>
1200
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1201
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1202
+ <td valign="left" class="main" width="200">Sofort</td>
1203
+ </tr>
1204
+ </table>
1205
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1206
+ <tr>
1207
+ <td><div align="right">
1208
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1591173/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
1209
+ </div>
1210
+ </td>
1211
+ </tr>
1212
+ </table>
1213
+ </td>
1214
+ </tr>
1215
+ </table>
1216
+ </td>
1217
+ </tr>
1218
+ </table>
1219
+ </td>
1220
+ </tr>
1221
+ <tr>
1222
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1223
+ </td>
1224
+ <td width="5"></td>
1225
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p1666706_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
1226
+ </tr>
1227
+ <tr>
1228
+ <td></td>
1229
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1230
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1231
+ <tr>
1232
+ <td align="right" class="main2">
1233
+ <strong> 59,47 EUR </strong><br />
1234
+ </td>
1235
+ </tr>
1236
+ <tr>
1237
+ <td align="right" class="main">
1238
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1239
+ </td>
1240
+ </tr>
1241
+ </table>
1242
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1243
+ <tr height="15">
1244
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1245
+ </td>
1246
+ <td align="left" valign="top" height="15">
1247
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1248
+ Rezeptfrei</font> </font></a>
1249
+ </td>
1250
+ </tr>
1251
+ <tr height="15">
1252
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1253
+ </td>
1254
+ <td align="left" valign="top" height="15" class="productinfosmall">
1255
+ 10 St Kompressen
1256
+ </td>
1257
+ </tr>
1258
+ <tr height="15">
1259
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1260
+ </td>
1261
+ <td align="left" valign="top" height="15" class="productinfosmall">
1262
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von EURIM PHARM ARZNEIM." href="advanced_search_result.php?keywords=EURIM PHARM ARZNEIM.">EURIM PHARM ARZNEIM.</a>
1263
+ </td>
1264
+ </tr>
1265
+ </table>
1266
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1267
+ <tr>
1268
+ <td>
1269
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1270
+ <tr>
1271
+ <td>
1272
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1273
+ <tr>
1274
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1275
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1276
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1277
+ </tr>
1278
+ </table>
1279
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1280
+ <tr>
1281
+ <td><div align="right">
1282
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1666706/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
1283
+ </div>
1284
+ </td>
1285
+ </tr>
1286
+ </table>
1287
+ </td>
1288
+ </tr>
1289
+ </table>
1290
+ </td>
1291
+ </tr>
1292
+ </table>
1293
+ </td>
1294
+ </tr>
1295
+ <tr>
1296
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1297
+ </td>
1298
+ <td width="5"></td>
1299
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p4242119_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
1300
+ </tr>
1301
+ <tr>
1302
+ <td></td>
1303
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1304
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1305
+ <tr>
1306
+ <td align="right" class="main2">
1307
+ <strong> 61,60 EUR </strong><br />
1308
+ </td>
1309
+ </tr>
1310
+ <tr>
1311
+ <td align="right" class="main">
1312
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1313
+ </td>
1314
+ </tr>
1315
+ </table>
1316
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1317
+ <tr height="15">
1318
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1319
+ </td>
1320
+ <td align="left" valign="top" height="15">
1321
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1322
+ Rezeptfrei</font> </font></a>
1323
+ </td>
1324
+ </tr>
1325
+ <tr height="15">
1326
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1327
+ </td>
1328
+ <td align="left" valign="top" height="15" class="productinfosmall">
1329
+ 10 St Kompressen
1330
+ </td>
1331
+ </tr>
1332
+ <tr height="15">
1333
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1334
+ </td>
1335
+ <td align="left" valign="top" height="15" class="productinfosmall">
1336
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von ACA MUELLER/ADAG PHARM" href="advanced_search_result.php?keywords=ACA MUELLER/ADAG PHARM">ACA MUELLER/ADAG PHARM</a>
1337
+ </td>
1338
+ </tr>
1339
+ </table>
1340
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1341
+ <tr>
1342
+ <td>
1343
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1344
+ <tr>
1345
+ <td>
1346
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1347
+ <tr>
1348
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1349
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1350
+ <td valign="left" class="main" width="200">Sofort</td>
1351
+ </tr>
1352
+ </table>
1353
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1354
+ <tr>
1355
+ <td><div align="right">
1356
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4242119/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
1357
+ </div>
1358
+ </td>
1359
+ </tr>
1360
+ </table>
1361
+ </td>
1362
+ </tr>
1363
+ </table>
1364
+ </td>
1365
+ </tr>
1366
+ </table>
1367
+ </td>
1368
+ </tr>
1369
+ <tr>
1370
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1371
+ </td>
1372
+ <td width="5"></td>
1373
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p4408991_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
1374
+ </tr>
1375
+ <tr>
1376
+ <td></td>
1377
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1378
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1379
+ <tr>
1380
+ <td align="right" class="main2">
1381
+ <strong> 57,60 EUR </strong><br />
1382
+ </td>
1383
+ </tr>
1384
+ <tr>
1385
+ <td align="right" class="main">
1386
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1387
+ </td>
1388
+ </tr>
1389
+ </table>
1390
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1391
+ <tr height="15">
1392
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1393
+ </td>
1394
+ <td align="left" valign="top" height="15">
1395
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1396
+ Rezeptfrei</font> </font></a>
1397
+ </td>
1398
+ </tr>
1399
+ <tr height="15">
1400
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1401
+ </td>
1402
+ <td align="left" valign="top" height="15" class="productinfosmall">
1403
+ 10 St Kompressen
1404
+ </td>
1405
+ </tr>
1406
+ <tr height="15">
1407
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1408
+ </td>
1409
+ <td align="left" valign="top" height="15" class="productinfosmall">
1410
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von BIOS NATURPRODUKTE" href="advanced_search_result.php?keywords=BIOS NATURPRODUKTE">BIOS NATURPRODUKTE</a>
1411
+ </td>
1412
+ </tr>
1413
+ </table>
1414
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1415
+ <tr>
1416
+ <td>
1417
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1418
+ <tr>
1419
+ <td>
1420
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1421
+ <tr>
1422
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1423
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1424
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1425
+ </tr>
1426
+ </table>
1427
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1428
+ <tr>
1429
+ <td><div align="right">
1430
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4408991/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
1431
+ </div>
1432
+ </td>
1433
+ </tr>
1434
+ </table>
1435
+ </td>
1436
+ </tr>
1437
+ </table>
1438
+ </td>
1439
+ </tr>
1440
+ </table>
1441
+ </td>
1442
+ </tr>
1443
+ <tr>
1444
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1445
+ </td>
1446
+ <td width="5"></td>
1447
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p4409051_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
1448
+ </tr>
1449
+ <tr>
1450
+ <td></td>
1451
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1452
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1453
+ <tr>
1454
+ <td align="right" class="main2">
1455
+ <strong> 282,87 EUR </strong><br />
1456
+ </td>
1457
+ </tr>
1458
+ <tr>
1459
+ <td align="right" class="main">
1460
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1461
+ </td>
1462
+ </tr>
1463
+ </table>
1464
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1465
+ <tr height="15">
1466
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1467
+ </td>
1468
+ <td align="left" valign="top" height="15">
1469
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1470
+ Rezeptfrei</font> </font></a>
1471
+ </td>
1472
+ </tr>
1473
+ <tr height="15">
1474
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1475
+ </td>
1476
+ <td align="left" valign="top" height="15" class="productinfosmall">
1477
+ 50 St Kompressen
1478
+ </td>
1479
+ </tr>
1480
+ <tr height="15">
1481
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1482
+ </td>
1483
+ <td align="left" valign="top" height="15" class="productinfosmall">
1484
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von BIOS NATURPRODUKTE" href="advanced_search_result.php?keywords=BIOS NATURPRODUKTE">BIOS NATURPRODUKTE</a>
1485
+ </td>
1486
+ </tr>
1487
+ </table>
1488
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1489
+ <tr>
1490
+ <td>
1491
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1492
+ <tr>
1493
+ <td>
1494
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1495
+ <tr>
1496
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1497
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1498
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1499
+ </tr>
1500
+ </table>
1501
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1502
+ <tr>
1503
+ <td><div align="right">
1504
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4409051/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
1505
+ </div>
1506
+ </td>
1507
+ </tr>
1508
+ </table>
1509
+ </td>
1510
+ </tr>
1511
+ </table>
1512
+ </td>
1513
+ </tr>
1514
+ </table>
1515
+ </td>
1516
+ </tr>
1517
+ <tr>
1518
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1519
+ </td>
1520
+ <td width="5"></td>
1521
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 cm steril Kompr." href="http://www.apotheke-online-internet.de/a/ac/p6882018_actisorb-220-silver-10-5x10-5-cm-steril-kompr-.html">ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.</a></h2></td>
1522
+ </tr>
1523
+ <tr>
1524
+ <td></td>
1525
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1526
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1527
+ <tr>
1528
+ <td align="right" class="main2">
1529
+ <strong> 57,53 EUR </strong><br />
1530
+ </td>
1531
+ </tr>
1532
+ <tr>
1533
+ <td align="right" class="main">
1534
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1535
+ </td>
1536
+ </tr>
1537
+ </table>
1538
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1539
+ <tr height="15">
1540
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1541
+ </td>
1542
+ <td align="left" valign="top" height="15">
1543
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1544
+ Rezeptfrei</font> </font></a>
1545
+ </td>
1546
+ </tr>
1547
+ <tr height="15">
1548
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1549
+ </td>
1550
+ <td align="left" valign="top" height="15" class="productinfosmall">
1551
+ 10 St Kompressen
1552
+ </td>
1553
+ </tr>
1554
+ <tr height="15">
1555
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1556
+ </td>
1557
+ <td align="left" valign="top" height="15" class="productinfosmall">
1558
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 cm steril Kompr. von ACTIPART GMBH" href="advanced_search_result.php?keywords=ACTIPART GMBH">ACTIPART GMBH</a>
1559
+ </td>
1560
+ </tr>
1561
+ </table>
1562
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1563
+ <tr>
1564
+ <td>
1565
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1566
+ <tr>
1567
+ <td>
1568
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1569
+ <tr>
1570
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1571
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1572
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1573
+ </tr>
1574
+ </table>
1575
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1576
+ <tr>
1577
+ <td><div align="right">
1578
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/6882018/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 cm steril Kompr.' bestellen " /></a>
1579
+ </div>
1580
+ </td>
1581
+ </tr>
1582
+ </table>
1583
+ </td>
1584
+ </tr>
1585
+ </table>
1586
+ </td>
1587
+ </tr>
1588
+ </table>
1589
+ </td>
1590
+ </tr>
1591
+ <tr>
1592
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1593
+ </td>
1594
+ <td width="5"></td>
1595
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 10,5x10,5 steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p3136912_actisorb-220-silver-10-5x10-5-steril-kompressen.html">ACTISORB 220 Silver 10,5x10,5 steril Kompressen</a></h2></td>
1596
+ </tr>
1597
+ <tr>
1598
+ <td></td>
1599
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1600
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1601
+ <tr>
1602
+ <td align="right" class="main2">
1603
+ <strong> 59,44 EUR </strong><br />
1604
+ </td>
1605
+ </tr>
1606
+ <tr>
1607
+ <td align="right" class="main">
1608
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1609
+ </td>
1610
+ </tr>
1611
+ </table>
1612
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1613
+ <tr height="15">
1614
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1615
+ </td>
1616
+ <td align="left" valign="top" height="15">
1617
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1618
+ Rezeptfrei</font> </font></a>
1619
+ </td>
1620
+ </tr>
1621
+ <tr height="15">
1622
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1623
+ </td>
1624
+ <td align="left" valign="top" height="15" class="productinfosmall">
1625
+ 10 St Kompressen
1626
+ </td>
1627
+ </tr>
1628
+ <tr height="15">
1629
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1630
+ </td>
1631
+ <td align="left" valign="top" height="15" class="productinfosmall">
1632
+ <a class="liste" title="ACTISORB 220 Silver 10,5x10,5 steril Kompressen von WESTEN PHARMA GMBH" href="advanced_search_result.php?keywords=WESTEN PHARMA GMBH">WESTEN PHARMA GMBH</a>
1633
+ </td>
1634
+ </tr>
1635
+ </table>
1636
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1637
+ <tr>
1638
+ <td>
1639
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1640
+ <tr>
1641
+ <td>
1642
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1643
+ <tr>
1644
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1645
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1646
+ <td valign="left" class="main" width="200">Sofort</td>
1647
+ </tr>
1648
+ </table>
1649
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1650
+ <tr>
1651
+ <td><div align="right">
1652
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3136912/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 10,5x10,5 steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 10,5x10,5 steril Kompressen' bestellen " /></a>
1653
+ </div>
1654
+ </td>
1655
+ </tr>
1656
+ </table>
1657
+ </td>
1658
+ </tr>
1659
+ </table>
1660
+ </td>
1661
+ </tr>
1662
+ </table>
1663
+ </td>
1664
+ </tr>
1665
+ <tr>
1666
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1667
+ </td>
1668
+ <td width="5"></td>
1669
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1098780_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
1670
+ </tr>
1671
+ <tr>
1672
+ <td></td>
1673
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1674
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1675
+ <tr>
1676
+ <td align="right" class="main2">
1677
+ <strong> 167,42 EUR </strong><br />
1678
+ </td>
1679
+ </tr>
1680
+ <tr>
1681
+ <td align="right" class="main">
1682
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1683
+ </td>
1684
+ </tr>
1685
+ </table>
1686
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1687
+ <tr height="15">
1688
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1689
+ </td>
1690
+ <td align="left" valign="top" height="15">
1691
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1692
+ Rezeptfrei</font> </font></a>
1693
+ </td>
1694
+ </tr>
1695
+ <tr height="15">
1696
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1697
+ </td>
1698
+ <td align="left" valign="top" height="15" class="productinfosmall">
1699
+ 10 St Kompressen
1700
+ </td>
1701
+ </tr>
1702
+ <tr height="15">
1703
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1704
+ </td>
1705
+ <td align="left" valign="top" height="15" class="productinfosmall">
1706
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von ETHICON GMBH BER. AWC" href="advanced_search_result.php?keywords=ETHICON GMBH BER. AWC">ETHICON GMBH BER. AWC</a>
1707
+ </td>
1708
+ </tr>
1709
+ </table>
1710
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1711
+ <tr>
1712
+ <td>
1713
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1714
+ <tr>
1715
+ <td>
1716
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1717
+ <tr>
1718
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1719
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1720
+ <td valign="left" class="main" width="200">Sofort</td>
1721
+ </tr>
1722
+ </table>
1723
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1724
+ <tr>
1725
+ <td><div align="right">
1726
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1098780/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
1727
+ </div>
1728
+ </td>
1729
+ </tr>
1730
+ </table>
1731
+ </td>
1732
+ </tr>
1733
+ </table>
1734
+ </td>
1735
+ </tr>
1736
+ </table>
1737
+ </td>
1738
+ </tr>
1739
+ <tr>
1740
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1741
+ </td>
1742
+ <td width="5"></td>
1743
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1415542_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
1744
+ </tr>
1745
+ <tr>
1746
+ <td></td>
1747
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1748
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1749
+ <tr>
1750
+ <td align="right" class="main2">
1751
+ <strong> 130,77 EUR </strong><br />
1752
+ </td>
1753
+ </tr>
1754
+ <tr>
1755
+ <td align="right" class="main">
1756
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1757
+ </td>
1758
+ </tr>
1759
+ </table>
1760
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1761
+ <tr height="15">
1762
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1763
+ </td>
1764
+ <td align="left" valign="top" height="15">
1765
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1766
+ Rezeptfrei</font> </font></a>
1767
+ </td>
1768
+ </tr>
1769
+ <tr height="15">
1770
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1771
+ </td>
1772
+ <td align="left" valign="top" height="15" class="productinfosmall">
1773
+ 10 St Kompressen
1774
+ </td>
1775
+ </tr>
1776
+ <tr height="15">
1777
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1778
+ </td>
1779
+ <td align="left" valign="top" height="15" class="productinfosmall">
1780
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von MTK PHARMA VERTR GMBH" href="advanced_search_result.php?keywords=MTK PHARMA VERTR GMBH">MTK PHARMA VERTR GMBH</a>
1781
+ </td>
1782
+ </tr>
1783
+ </table>
1784
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1785
+ <tr>
1786
+ <td>
1787
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1788
+ <tr>
1789
+ <td>
1790
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1791
+ <tr>
1792
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1793
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1794
+ <td valign="left" class="main" width="200">Sofort</td>
1795
+ </tr>
1796
+ </table>
1797
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1798
+ <tr>
1799
+ <td><div align="right">
1800
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1415542/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
1801
+ </div>
1802
+ </td>
1803
+ </tr>
1804
+ </table>
1805
+ </td>
1806
+ </tr>
1807
+ </table>
1808
+ </td>
1809
+ </tr>
1810
+ </table>
1811
+ </td>
1812
+ </tr>
1813
+ <tr>
1814
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1815
+ </td>
1816
+ <td width="5"></td>
1817
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1426853_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
1818
+ </tr>
1819
+ <tr>
1820
+ <td></td>
1821
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1822
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1823
+ <tr>
1824
+ <td align="right" class="main2">
1825
+ <strong> 130,77 EUR </strong><br />
1826
+ </td>
1827
+ </tr>
1828
+ <tr>
1829
+ <td align="right" class="main">
1830
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1831
+ </td>
1832
+ </tr>
1833
+ </table>
1834
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1835
+ <tr height="15">
1836
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1837
+ </td>
1838
+ <td align="left" valign="top" height="15">
1839
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1840
+ Rezeptfrei</font> </font></a>
1841
+ </td>
1842
+ </tr>
1843
+ <tr height="15">
1844
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1845
+ </td>
1846
+ <td align="left" valign="top" height="15" class="productinfosmall">
1847
+ 10 St Kompressen
1848
+ </td>
1849
+ </tr>
1850
+ <tr height="15">
1851
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1852
+ </td>
1853
+ <td align="left" valign="top" height="15" class="productinfosmall">
1854
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von KOHLPHARMA GMBH" href="advanced_search_result.php?keywords=KOHLPHARMA GMBH">KOHLPHARMA GMBH</a>
1855
+ </td>
1856
+ </tr>
1857
+ </table>
1858
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1859
+ <tr>
1860
+ <td>
1861
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1862
+ <tr>
1863
+ <td>
1864
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1865
+ <tr>
1866
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1867
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1868
+ <td valign="left" class="main" width="200">Sofort</td>
1869
+ </tr>
1870
+ </table>
1871
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1872
+ <tr>
1873
+ <td><div align="right">
1874
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1426853/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
1875
+ </div>
1876
+ </td>
1877
+ </tr>
1878
+ </table>
1879
+ </td>
1880
+ </tr>
1881
+ </table>
1882
+ </td>
1883
+ </tr>
1884
+ </table>
1885
+ </td>
1886
+ </tr>
1887
+ <tr>
1888
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1889
+ </td>
1890
+ <td width="5"></td>
1891
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1591167_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
1892
+ </tr>
1893
+ <tr>
1894
+ <td></td>
1895
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1896
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1897
+ <tr>
1898
+ <td align="right" class="main2">
1899
+ <strong> 126,70 EUR </strong><br />
1900
+ </td>
1901
+ </tr>
1902
+ <tr>
1903
+ <td align="right" class="main">
1904
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1905
+ </td>
1906
+ </tr>
1907
+ </table>
1908
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1909
+ <tr height="15">
1910
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1911
+ </td>
1912
+ <td align="left" valign="top" height="15">
1913
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1914
+ Rezeptfrei</font> </font></a>
1915
+ </td>
1916
+ </tr>
1917
+ <tr height="15">
1918
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1919
+ </td>
1920
+ <td align="left" valign="top" height="15" class="productinfosmall">
1921
+ 10 St Kompressen
1922
+ </td>
1923
+ </tr>
1924
+ <tr height="15">
1925
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1926
+ </td>
1927
+ <td align="left" valign="top" height="15" class="productinfosmall">
1928
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von EMRA-MED ARZNEIM.GMBH" href="advanced_search_result.php?keywords=EMRA-MED ARZNEIM.GMBH">EMRA-MED ARZNEIM.GMBH</a>
1929
+ </td>
1930
+ </tr>
1931
+ </table>
1932
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1933
+ <tr>
1934
+ <td>
1935
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1936
+ <tr>
1937
+ <td>
1938
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1939
+ <tr>
1940
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1941
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1942
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1943
+ </tr>
1944
+ </table>
1945
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1946
+ <tr>
1947
+ <td><div align="right">
1948
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1591167/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
1949
+ </div>
1950
+ </td>
1951
+ </tr>
1952
+ </table>
1953
+ </td>
1954
+ </tr>
1955
+ </table>
1956
+ </td>
1957
+ </tr>
1958
+ </table>
1959
+ </td>
1960
+ </tr>
1961
+ <tr>
1962
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1963
+ </td>
1964
+ <td width="5"></td>
1965
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1666712_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
1966
+ </tr>
1967
+ <tr>
1968
+ <td></td>
1969
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1970
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1971
+ <tr>
1972
+ <td align="right" class="main2">
1973
+ <strong> 126,67 EUR </strong><br />
1974
+ </td>
1975
+ </tr>
1976
+ <tr>
1977
+ <td align="right" class="main">
1978
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
1979
+ </td>
1980
+ </tr>
1981
+ </table>
1982
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1983
+ <tr height="15">
1984
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1985
+ </td>
1986
+ <td align="left" valign="top" height="15">
1987
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1988
+ Rezeptfrei</font> </font></a>
1989
+ </td>
1990
+ </tr>
1991
+ <tr height="15">
1992
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1993
+ </td>
1994
+ <td align="left" valign="top" height="15" class="productinfosmall">
1995
+ 10 St Kompressen
1996
+ </td>
1997
+ </tr>
1998
+ <tr height="15">
1999
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2000
+ </td>
2001
+ <td align="left" valign="top" height="15" class="productinfosmall">
2002
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von EURIM PHARM ARZNEIM." href="advanced_search_result.php?keywords=EURIM PHARM ARZNEIM.">EURIM PHARM ARZNEIM.</a>
2003
+ </td>
2004
+ </tr>
2005
+ </table>
2006
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2007
+ <tr>
2008
+ <td>
2009
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2010
+ <tr>
2011
+ <td>
2012
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2013
+ <tr>
2014
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2015
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2016
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2017
+ </tr>
2018
+ </table>
2019
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2020
+ <tr>
2021
+ <td><div align="right">
2022
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1666712/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
2023
+ </div>
2024
+ </td>
2025
+ </tr>
2026
+ </table>
2027
+ </td>
2028
+ </tr>
2029
+ </table>
2030
+ </td>
2031
+ </tr>
2032
+ </table>
2033
+ </td>
2034
+ </tr>
2035
+ <tr>
2036
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2037
+ </td>
2038
+ <td width="5"></td>
2039
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p3826479_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
2040
+ </tr>
2041
+ <tr>
2042
+ <td></td>
2043
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2044
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2045
+ <tr>
2046
+ <td align="right" class="main2">
2047
+ <strong> 126,67 EUR </strong><br />
2048
+ </td>
2049
+ </tr>
2050
+ <tr>
2051
+ <td align="right" class="main">
2052
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2053
+ </td>
2054
+ </tr>
2055
+ </table>
2056
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2057
+ <tr height="15">
2058
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2059
+ </td>
2060
+ <td align="left" valign="top" height="15">
2061
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2062
+ Rezeptfrei</font> </font></a>
2063
+ </td>
2064
+ </tr>
2065
+ <tr height="15">
2066
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2067
+ </td>
2068
+ <td align="left" valign="top" height="15" class="productinfosmall">
2069
+ 10 St Kompressen
2070
+ </td>
2071
+ </tr>
2072
+ <tr height="15">
2073
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2074
+ </td>
2075
+ <td align="left" valign="top" height="15" class="productinfosmall">
2076
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von WESTEN PHARMA GMBH" href="advanced_search_result.php?keywords=WESTEN PHARMA GMBH">WESTEN PHARMA GMBH</a>
2077
+ </td>
2078
+ </tr>
2079
+ </table>
2080
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2081
+ <tr>
2082
+ <td>
2083
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2084
+ <tr>
2085
+ <td>
2086
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2087
+ <tr>
2088
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2089
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2090
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2091
+ </tr>
2092
+ </table>
2093
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2094
+ <tr>
2095
+ <td><div align="right">
2096
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3826479/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
2097
+ </div>
2098
+ </td>
2099
+ </tr>
2100
+ </table>
2101
+ </td>
2102
+ </tr>
2103
+ </table>
2104
+ </td>
2105
+ </tr>
2106
+ </table>
2107
+ </td>
2108
+ </tr>
2109
+ <tr>
2110
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2111
+ </td>
2112
+ <td width="5"></td>
2113
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p4242125_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
2114
+ </tr>
2115
+ <tr>
2116
+ <td></td>
2117
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2118
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2119
+ <tr>
2120
+ <td align="right" class="main2">
2121
+ <strong> 131,33 EUR </strong><br />
2122
+ </td>
2123
+ </tr>
2124
+ <tr>
2125
+ <td align="right" class="main">
2126
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2127
+ </td>
2128
+ </tr>
2129
+ </table>
2130
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2131
+ <tr height="15">
2132
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2133
+ </td>
2134
+ <td align="left" valign="top" height="15">
2135
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2136
+ Rezeptfrei</font> </font></a>
2137
+ </td>
2138
+ </tr>
2139
+ <tr height="15">
2140
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2141
+ </td>
2142
+ <td align="left" valign="top" height="15" class="productinfosmall">
2143
+ 10 St Kompressen
2144
+ </td>
2145
+ </tr>
2146
+ <tr height="15">
2147
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2148
+ </td>
2149
+ <td align="left" valign="top" height="15" class="productinfosmall">
2150
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von ACA MUELLER/ADAG PHARM" href="advanced_search_result.php?keywords=ACA MUELLER/ADAG PHARM">ACA MUELLER/ADAG PHARM</a>
2151
+ </td>
2152
+ </tr>
2153
+ </table>
2154
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2155
+ <tr>
2156
+ <td>
2157
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2158
+ <tr>
2159
+ <td>
2160
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2161
+ <tr>
2162
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2163
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
2164
+ <td valign="left" class="main" width="200">Sofort</td>
2165
+ </tr>
2166
+ </table>
2167
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2168
+ <tr>
2169
+ <td><div align="right">
2170
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4242125/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
2171
+ </div>
2172
+ </td>
2173
+ </tr>
2174
+ </table>
2175
+ </td>
2176
+ </tr>
2177
+ </table>
2178
+ </td>
2179
+ </tr>
2180
+ </table>
2181
+ </td>
2182
+ </tr>
2183
+ <tr>
2184
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2185
+ </td>
2186
+ <td width="5"></td>
2187
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p4408979_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
2188
+ </tr>
2189
+ <tr>
2190
+ <td></td>
2191
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2192
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2193
+ <tr>
2194
+ <td align="right" class="main2">
2195
+ <strong> 124,35 EUR </strong><br />
2196
+ </td>
2197
+ </tr>
2198
+ <tr>
2199
+ <td align="right" class="main">
2200
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2201
+ </td>
2202
+ </tr>
2203
+ </table>
2204
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2205
+ <tr height="15">
2206
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2207
+ </td>
2208
+ <td align="left" valign="top" height="15">
2209
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2210
+ Rezeptfrei</font> </font></a>
2211
+ </td>
2212
+ </tr>
2213
+ <tr height="15">
2214
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2215
+ </td>
2216
+ <td align="left" valign="top" height="15" class="productinfosmall">
2217
+ 10 St Kompressen
2218
+ </td>
2219
+ </tr>
2220
+ <tr height="15">
2221
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2222
+ </td>
2223
+ <td align="left" valign="top" height="15" class="productinfosmall">
2224
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von BIOS NATURPRODUKTE" href="advanced_search_result.php?keywords=BIOS NATURPRODUKTE">BIOS NATURPRODUKTE</a>
2225
+ </td>
2226
+ </tr>
2227
+ </table>
2228
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2229
+ <tr>
2230
+ <td>
2231
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2232
+ <tr>
2233
+ <td>
2234
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2235
+ <tr>
2236
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2237
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2238
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2239
+ </tr>
2240
+ </table>
2241
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2242
+ <tr>
2243
+ <td><div align="right">
2244
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4408979/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
2245
+ </div>
2246
+ </td>
2247
+ </tr>
2248
+ </table>
2249
+ </td>
2250
+ </tr>
2251
+ </table>
2252
+ </td>
2253
+ </tr>
2254
+ </table>
2255
+ </td>
2256
+ </tr>
2257
+ <tr>
2258
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2259
+ </td>
2260
+ <td width="5"></td>
2261
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p4408985_actisorb-220-silver-19x10-5-cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5 cm steril Kompressen</a></h2></td>
2262
+ </tr>
2263
+ <tr>
2264
+ <td></td>
2265
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2266
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2267
+ <tr>
2268
+ <td align="right" class="main2">
2269
+ <strong> 611,30 EUR </strong><br />
2270
+ </td>
2271
+ </tr>
2272
+ <tr>
2273
+ <td align="right" class="main">
2274
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2275
+ </td>
2276
+ </tr>
2277
+ </table>
2278
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2279
+ <tr height="15">
2280
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2281
+ </td>
2282
+ <td align="left" valign="top" height="15">
2283
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2284
+ Rezeptfrei</font> </font></a>
2285
+ </td>
2286
+ </tr>
2287
+ <tr height="15">
2288
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2289
+ </td>
2290
+ <td align="left" valign="top" height="15" class="productinfosmall">
2291
+ 50 St Kompressen
2292
+ </td>
2293
+ </tr>
2294
+ <tr height="15">
2295
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2296
+ </td>
2297
+ <td align="left" valign="top" height="15" class="productinfosmall">
2298
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5 cm steril Kompressen von BIOS NATURPRODUKTE" href="advanced_search_result.php?keywords=BIOS NATURPRODUKTE">BIOS NATURPRODUKTE</a>
2299
+ </td>
2300
+ </tr>
2301
+ </table>
2302
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2303
+ <tr>
2304
+ <td>
2305
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2306
+ <tr>
2307
+ <td>
2308
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2309
+ <tr>
2310
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2311
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2312
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2313
+ </tr>
2314
+ </table>
2315
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2316
+ <tr>
2317
+ <td><div align="right">
2318
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4408985/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5 cm steril Kompressen' bestellen " /></a>
2319
+ </div>
2320
+ </td>
2321
+ </tr>
2322
+ </table>
2323
+ </td>
2324
+ </tr>
2325
+ </table>
2326
+ </td>
2327
+ </tr>
2328
+ </table>
2329
+ </td>
2330
+ </tr>
2331
+ <tr>
2332
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2333
+ </td>
2334
+ <td width="5"></td>
2335
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 19x10,5cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p3485469_actisorb-220-silver-19x10-5cm-steril-kompressen.html">ACTISORB 220 Silver 19x10,5cm steril Kompressen</a></h2></td>
2336
+ </tr>
2337
+ <tr>
2338
+ <td></td>
2339
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2340
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2341
+ <tr>
2342
+ <td align="right" class="main2">
2343
+ <strong> 124,22 EUR </strong><br />
2344
+ </td>
2345
+ </tr>
2346
+ <tr>
2347
+ <td align="right" class="main">
2348
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2349
+ </td>
2350
+ </tr>
2351
+ </table>
2352
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2353
+ <tr height="15">
2354
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2355
+ </td>
2356
+ <td align="left" valign="top" height="15">
2357
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2358
+ Rezeptfrei</font> </font></a>
2359
+ </td>
2360
+ </tr>
2361
+ <tr height="15">
2362
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2363
+ </td>
2364
+ <td align="left" valign="top" height="15" class="productinfosmall">
2365
+ 10 St Kompressen
2366
+ </td>
2367
+ </tr>
2368
+ <tr height="15">
2369
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2370
+ </td>
2371
+ <td align="left" valign="top" height="15" class="productinfosmall">
2372
+ <a class="liste" title="ACTISORB 220 Silver 19x10,5cm steril Kompressen von ACTIPART GMBH" href="advanced_search_result.php?keywords=ACTIPART GMBH">ACTIPART GMBH</a>
2373
+ </td>
2374
+ </tr>
2375
+ </table>
2376
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2377
+ <tr>
2378
+ <td>
2379
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2380
+ <tr>
2381
+ <td>
2382
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2383
+ <tr>
2384
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2385
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2386
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2387
+ </tr>
2388
+ </table>
2389
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2390
+ <tr>
2391
+ <td><div align="right">
2392
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3485469/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 19x10,5cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 19x10,5cm steril Kompressen' bestellen " /></a>
2393
+ </div>
2394
+ </td>
2395
+ </tr>
2396
+ </table>
2397
+ </td>
2398
+ </tr>
2399
+ </table>
2400
+ </td>
2401
+ </tr>
2402
+ </table>
2403
+ </td>
2404
+ </tr>
2405
+ <tr>
2406
+ <td rowspan="2" align="left" valign="top">&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac/p1098768_actisorb-220-silver-9-5x6-5-cm-steril-kompressen.html"><img src="images/product_images/thumbnail_images/1098768.gif" alt="ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen" /></a> <br />
2407
+ </td>
2408
+ <td width="5"></td>
2409
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1098768_actisorb-220-silver-9-5x6-5-cm-steril-kompressen.html">ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen</a></h2></td>
2410
+ </tr>
2411
+ <tr>
2412
+ <td></td>
2413
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2414
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2415
+ <tr>
2416
+ <td align="right" class="main2">
2417
+ <strong> 60,48 EUR </strong><br />
2418
+ </td>
2419
+ </tr>
2420
+ <tr>
2421
+ <td align="right" class="main">
2422
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2423
+ </td>
2424
+ </tr>
2425
+ </table>
2426
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2427
+ <tr height="15">
2428
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2429
+ </td>
2430
+ <td align="left" valign="top" height="15">
2431
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2432
+ Rezeptfrei</font> </font></a>
2433
+ </td>
2434
+ </tr>
2435
+ <tr height="15">
2436
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2437
+ </td>
2438
+ <td align="left" valign="top" height="15" class="productinfosmall">
2439
+ 10 St Kompressen
2440
+ </td>
2441
+ </tr>
2442
+ <tr height="15">
2443
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2444
+ </td>
2445
+ <td align="left" valign="top" height="15" class="productinfosmall">
2446
+ <a class="liste" title="ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen von ETHICON GMBH BER. AWC" href="advanced_search_result.php?keywords=ETHICON GMBH BER. AWC">ETHICON GMBH BER. AWC</a>
2447
+ </td>
2448
+ </tr>
2449
+ </table>
2450
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2451
+ <tr>
2452
+ <td>
2453
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2454
+ <tr>
2455
+ <td>
2456
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2457
+ <tr>
2458
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2459
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
2460
+ <td valign="left" class="main" width="200">Sofort</td>
2461
+ </tr>
2462
+ </table>
2463
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2464
+ <tr>
2465
+ <td><div align="right">
2466
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1098768/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen " /></a>
2467
+ </div>
2468
+ </td>
2469
+ </tr>
2470
+ </table>
2471
+ </td>
2472
+ </tr>
2473
+ </table>
2474
+ </td>
2475
+ </tr>
2476
+ </table>
2477
+ </td>
2478
+ </tr>
2479
+ <tr>
2480
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2481
+ </td>
2482
+ <td width="5"></td>
2483
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1467705_actisorb-220-silver-9-5x6-5-cm-steril-kompressen.html">ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen</a></h2></td>
2484
+ </tr>
2485
+ <tr>
2486
+ <td></td>
2487
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2488
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2489
+ <tr>
2490
+ <td align="right" class="main2">
2491
+ <strong> 51,38 EUR </strong><br />
2492
+ </td>
2493
+ </tr>
2494
+ <tr>
2495
+ <td align="right" class="main">
2496
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2497
+ </td>
2498
+ </tr>
2499
+ </table>
2500
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2501
+ <tr height="15">
2502
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2503
+ </td>
2504
+ <td align="left" valign="top" height="15">
2505
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2506
+ Rezeptfrei</font> </font></a>
2507
+ </td>
2508
+ </tr>
2509
+ <tr height="15">
2510
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2511
+ </td>
2512
+ <td align="left" valign="top" height="15" class="productinfosmall">
2513
+ 10 St Kompressen
2514
+ </td>
2515
+ </tr>
2516
+ <tr height="15">
2517
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2518
+ </td>
2519
+ <td align="left" valign="top" height="15" class="productinfosmall">
2520
+ <a class="liste" title="ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen von KOHLPHARMA GMBH" href="advanced_search_result.php?keywords=KOHLPHARMA GMBH">KOHLPHARMA GMBH</a>
2521
+ </td>
2522
+ </tr>
2523
+ </table>
2524
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2525
+ <tr>
2526
+ <td>
2527
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2528
+ <tr>
2529
+ <td>
2530
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2531
+ <tr>
2532
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2533
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
2534
+ <td valign="left" class="main" width="200">Sofort</td>
2535
+ </tr>
2536
+ </table>
2537
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2538
+ <tr>
2539
+ <td><div align="right">
2540
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1467705/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen " /></a>
2541
+ </div>
2542
+ </td>
2543
+ </tr>
2544
+ </table>
2545
+ </td>
2546
+ </tr>
2547
+ </table>
2548
+ </td>
2549
+ </tr>
2550
+ </table>
2551
+ </td>
2552
+ </tr>
2553
+ <tr>
2554
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2555
+ </td>
2556
+ <td width="5"></td>
2557
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1467875_actisorb-220-silver-9-5x6-5-cm-steril-kompressen.html">ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen</a></h2></td>
2558
+ </tr>
2559
+ <tr>
2560
+ <td></td>
2561
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2562
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2563
+ <tr>
2564
+ <td align="right" class="main2">
2565
+ <strong> 51,38 EUR </strong><br />
2566
+ </td>
2567
+ </tr>
2568
+ <tr>
2569
+ <td align="right" class="main">
2570
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2571
+ </td>
2572
+ </tr>
2573
+ </table>
2574
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2575
+ <tr height="15">
2576
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2577
+ </td>
2578
+ <td align="left" valign="top" height="15">
2579
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2580
+ Rezeptfrei</font> </font></a>
2581
+ </td>
2582
+ </tr>
2583
+ <tr height="15">
2584
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2585
+ </td>
2586
+ <td align="left" valign="top" height="15" class="productinfosmall">
2587
+ 10 St Kompressen
2588
+ </td>
2589
+ </tr>
2590
+ <tr height="15">
2591
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2592
+ </td>
2593
+ <td align="left" valign="top" height="15" class="productinfosmall">
2594
+ <a class="liste" title="ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen von MTK PHARMA VERTR GMBH" href="advanced_search_result.php?keywords=MTK PHARMA VERTR GMBH">MTK PHARMA VERTR GMBH</a>
2595
+ </td>
2596
+ </tr>
2597
+ </table>
2598
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2599
+ <tr>
2600
+ <td>
2601
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2602
+ <tr>
2603
+ <td>
2604
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2605
+ <tr>
2606
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2607
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
2608
+ <td valign="left" class="main" width="200">Sofort</td>
2609
+ </tr>
2610
+ </table>
2611
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2612
+ <tr>
2613
+ <td><div align="right">
2614
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1467875/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen " /></a>
2615
+ </div>
2616
+ </td>
2617
+ </tr>
2618
+ </table>
2619
+ </td>
2620
+ </tr>
2621
+ </table>
2622
+ </td>
2623
+ </tr>
2624
+ </table>
2625
+ </td>
2626
+ </tr>
2627
+ <tr>
2628
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2629
+ </td>
2630
+ <td width="5"></td>
2631
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p1666729_actisorb-220-silver-9-5x6-5-cm-steril-kompressen.html">ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen</a></h2></td>
2632
+ </tr>
2633
+ <tr>
2634
+ <td></td>
2635
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2636
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2637
+ <tr>
2638
+ <td align="right" class="main2">
2639
+ <strong> 48,76 EUR </strong><br />
2640
+ </td>
2641
+ </tr>
2642
+ <tr>
2643
+ <td align="right" class="main">
2644
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2645
+ </td>
2646
+ </tr>
2647
+ </table>
2648
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2649
+ <tr height="15">
2650
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2651
+ </td>
2652
+ <td align="left" valign="top" height="15">
2653
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2654
+ Rezeptfrei</font> </font></a>
2655
+ </td>
2656
+ </tr>
2657
+ <tr height="15">
2658
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2659
+ </td>
2660
+ <td align="left" valign="top" height="15" class="productinfosmall">
2661
+ 10 St Kompressen
2662
+ </td>
2663
+ </tr>
2664
+ <tr height="15">
2665
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2666
+ </td>
2667
+ <td align="left" valign="top" height="15" class="productinfosmall">
2668
+ <a class="liste" title="ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen von EURIM PHARM ARZNEIM." href="advanced_search_result.php?keywords=EURIM PHARM ARZNEIM.">EURIM PHARM ARZNEIM.</a>
2669
+ </td>
2670
+ </tr>
2671
+ </table>
2672
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2673
+ <tr>
2674
+ <td>
2675
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2676
+ <tr>
2677
+ <td>
2678
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2679
+ <tr>
2680
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2681
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2682
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2683
+ </tr>
2684
+ </table>
2685
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2686
+ <tr>
2687
+ <td><div align="right">
2688
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1666729/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen " /></a>
2689
+ </div>
2690
+ </td>
2691
+ </tr>
2692
+ </table>
2693
+ </td>
2694
+ </tr>
2695
+ </table>
2696
+ </td>
2697
+ </tr>
2698
+ </table>
2699
+ </td>
2700
+ </tr>
2701
+ <tr>
2702
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2703
+ </td>
2704
+ <td width="5"></td>
2705
+ <td align="left"><h2><a title="Weitere Informationen zu ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen" href="http://www.apotheke-online-internet.de/a/ac/p3136906_actisorb-220-silver-9-5x6-5-cm-steril-kompressen.html">ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen</a></h2></td>
2706
+ </tr>
2707
+ <tr>
2708
+ <td></td>
2709
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2710
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2711
+ <tr>
2712
+ <td align="right" class="main2">
2713
+ <strong> 48,75 EUR </strong><br />
2714
+ </td>
2715
+ </tr>
2716
+ <tr>
2717
+ <td align="right" class="main">
2718
+ incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
2719
+ </td>
2720
+ </tr>
2721
+ </table>
2722
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2723
+ <tr height="15">
2724
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2725
+ </td>
2726
+ <td align="left" valign="top" height="15">
2727
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2728
+ Rezeptfrei</font> </font></a>
2729
+ </td>
2730
+ </tr>
2731
+ <tr height="15">
2732
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2733
+ </td>
2734
+ <td align="left" valign="top" height="15" class="productinfosmall">
2735
+ 10 St Kompressen
2736
+ </td>
2737
+ </tr>
2738
+ <tr height="15">
2739
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2740
+ </td>
2741
+ <td align="left" valign="top" height="15" class="productinfosmall">
2742
+ <a class="liste" title="ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen von WESTEN PHARMA GMBH" href="advanced_search_result.php?keywords=WESTEN PHARMA GMBH">WESTEN PHARMA GMBH</a>
2743
+ </td>
2744
+ </tr>
2745
+ </table>
2746
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2747
+ <tr>
2748
+ <td>
2749
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2750
+ <tr>
2751
+ <td>
2752
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2753
+ <tr>
2754
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2755
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
2756
+ <td valign="left" class="main" width="200">Sofort</td>
2757
+ </tr>
2758
+ </table>
2759
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2760
+ <tr>
2761
+ <td><div align="right">
2762
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3136906/cat/4002/category/AC/page/67"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen" title=" 1 x 'ACTISORB 220 Silver 9,5x6,5 cm steril Kompressen' bestellen " /></a>
2763
+ </div>
2764
+ </td>
2765
+ </tr>
2766
+ </table>
2767
+ </td>
2768
+ </tr>
2769
+ </table>
2770
+ </td>
2771
+ </tr>
2772
+ </table>
2773
+ </td>
2774
+ </tr>
2775
+ </table>
2776
+ </td>
2777
+ </tr>
2778
+ </table>
2779
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
2780
+ <tr valign="top">
2781
+ <td class="main"><p>Artikel Verzeichnis alphabetisch AC</p>
2782
+ <p>Unsere Kunden suchen h&auml;ufig:</p>
2783
+ <p>ACALYPHA Acarosan </p></td>
2784
+ <td align="right">&nbsp;</td>
2785
+ </tr>
2786
+ </table>
2787
+ <table width="100%" border="0">
2788
+ <tr>
2789
+ <td align="left">
2790
+ <!--
2791
+ * Social Bookmark Script
2792
+ * @ Version 1.5
2793
+ * @ Copyright (C) 2006 by Alexander Hadj Hassine - All rights reserved
2794
+ * @ Website http://www.social-bookmark-script.de/
2795
+ * @
2796
+ * @ Bei Nutzung des Scripts muessen alle unsere Copyright-Hinweise und Links in dem Script selbst,
2797
+ * @ sowie in der Anzeige/Ausgabe unveraendert bleiben!
2798
+ * @
2799
+ * @ D.h., sie duerfen nicht entfernt, umgewandelt, versteckt oder unsichtbar gemacht werden,
2800
+ * @ es sei den Sie verlinken http://www.social-bookmark-script.de/ mindestens 1 mal
2801
+ * @ "suchmaschinenfreundlich" von Ihrer Startseite!
2802
+ -->
2803
+ <a target="_blank" style="text-decoration:none; font-size:11px; font-family:Arial; color: #2A4956;" href="http://www.social-bookmark-script.de/">Social Bookmarking</a><br>
2804
+ <div style="border-top-style:solid; padding-top:3px; border-top-width: 1px; border-top-color: #2A4956; float: center;">
2805
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.mister-wong.de/" onClick="window.open('http://www.mister-wong.de/index.php?action=addurl&amp;bm_url='+encodeURIComponent(location.href)+'&amp;bm_notice=&amp;bm_description='+encodeURIComponent(document.title)+'&amp;bm_tags=');return false;"> <img style="padding-bottom:1px;" src="media/social/wong.gif" name="wong" border="0" id="wong"> </a>
2806
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.webnews.de/" onClick="window.open('http://www.webnews.de/einstellen?url='+encodeURIComponent(document.location)+'&amp;title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/webnews.gif" name="Webnews" border="0" id="Webnews"> </a>
2807
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.icio.de/" onClick="window.open('http://www.icio.de/add.php?url='+encodeURIComponent(location.href));return false;"> <img style="padding-bottom:1px;" src="media/social/icio.gif" name="Icio" border="0" id="Icio"> </a>
2808
+ <a rel="nofollow" style="text-decoration:none;" href="http://beta.oneview.de/" onClick="window.open('http://beta.oneview.de:80/quickadd/neu/addBookmark.jsf?URL='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/oneview.gif" name="Oneview" border="0" id="Oneview"> </a>
2809
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.linkarena.com/" onClick="window.open('http://linkarena.com/bookmarks/addlink/?url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title)+'&amp;desc=&amp;tags=');return false;"> <img style="padding-bottom:1px;" src="media/social/linkarena.gif" name="Linkarena" border="0" id="Linkarena"> </a>
2810
+ <a rel="nofollow" style="text-decoration:none;" href="http://yigg.de/" onClick="window.open('http://yigg.de/neu?exturl='+encodeURIComponent(location.href));return false"> <img style="padding-bottom:1px;" src="media/social/yigg.gif" name="Yigg" border="0" id="Yigg"> </a>
2811
+ <a rel="nofollow" style="text-decoration:none;" href="http://digg.com/" onClick="window.open('http://digg.com/submit?phase=2&amp;url='+encodeURIComponent(location.href)+'&amp;bodytext=&amp;tags=&amp;title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/digg.gif" name="Digg" border="0" id="Digg"> </a>
2812
+ <a rel="nofollow" style="text-decoration:none;" href="http://del.icio.us/" onClick="window.open('http://del.icio.us/post?v=2&amp;url='+encodeURIComponent(location.href)+'&amp;notes=&amp;tags=&amp;title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/del.gif" name="Delicious" border="0" id="Delicious"> </a>
2813
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.stumbleupon.com/" onClick="window.open('http://www.stumbleupon.com/submit?url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/stumbleupon.gif" name="StumbleUpon" border="0" id="StumbleUpon"> </a>
2814
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.netscape.com/" onClick="window.open('http://www.netscape.com/submit/?U='+encodeURIComponent(location.href)+'&amp;T='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/netscape.gif" name="Netscape" border="0" id="Netscape"> </a>
2815
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.furl.net/" onClick="window.open('http://www.furl.net/storeIt.jsp?u='+encodeURIComponent(location.href)+'&amp;keywords=&amp;t='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/furl.gif" name="Furl" border="0" id="Furl"> </a>
2816
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.yahoo.com/" onClick="window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?t='+encodeURIComponent(document.title)+'&amp;d=&amp;tag=&amp;u='+encodeURIComponent(location.href));return false;"> <img style="padding-bottom:1px;" src="media/social/yahoo.gif" name="Yahoo" border="0" id="Yahoo"> </a>
2817
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.spurl.net/" onClick="window.open('http://www.spurl.net/spurl.php?v=3&amp;tags=&amp;title='+encodeURIComponent(document.title)+'&amp;url='+encodeURIComponent(document.location.href));return false;"> <img style="padding-bottom:1px;" src="media/social/spurl.gif" name="Spurl" border="0" id="Spurl"> </a>
2818
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.google.com/" onClick="window.open('http://www.google.com/bookmarks/mark?op=add&amp;hl=de&amp;bkmk='+encodeURIComponent(location.href)+'&amp;annotation=&amp;labels=&amp;title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/google.gif" name="Google" border="0" id="Google"> </a>
2819
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.blinklist.com/" onClick="window.open('http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Tag=&amp;Url='+encodeURIComponent(location.href)+'&amp;Title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/blinklist.gif" name="Blinklist" border="0" id="Blinklist"> </a>
2820
+ <a rel="nofollow" style="text-decoration:none;" href="http://www.technorati.com/" onClick="window.open('http://technorati.com/faves?add='+encodeURIComponent(location.href)+'&amp;tag=');return false;"> <img style="padding-bottom:1px;" src="media/social/technorati.gif" name="Technorati" border="0" id="Technorati"> </a>
2821
+ <a rel="nofollow" style="text-decoration:none;" href="http://ma.gnolia.com/" onClick="window.open('http://ma.gnolia.com/bookmarklet/add?url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title)+'&amp;description=&amp;tags=');return false;"> <img style="padding-bottom:1px;" src="media/social/ma_gnolia.gif" name="MaGnolia" border="0" id="MaGnolia"> </a>
2822
+ <a rel="nofollow" style="text-decoration:none;" href="http://de.wikipedia.org/wiki/Social_Bookmarks" target="_Blank"> <img style="padding-bottom:1px;" src="media/social/what.gif" name="Information" border="0" id="Information"> </a>
2823
+ </div>
2824
+ </td>
2825
+ </tr>
2826
+ </table>
2827
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
2828
+ <tr height="10">
2829
+ <td align="center" valign="middle" height="20"><font size="1" face="verdana">Abbildungen k&ouml;nnen von Originalprodukten abweichen</font></td>
2830
+ </tr>
2831
+ <tr>
2832
+ <td align="center" valign="top" bgcolor="#b4e8ce" style="border: 1px solid; border-color: #3e7d52;"><div align="center"><font size="1" face="verdana">Zu Risiken und Nebenwirkungen lesen Sie die Packungsbeilage und fragen Sie Ihren Arzt oder Apotheker</font></div></td>
2833
+ </tr>
2834
+ <tr>
2835
+ <td>
2836
+ <table border="0" width="100%" cellspacing="0" cellpadding="2">
2837
+ <tr>
2838
+ <td class="smallText">Zeige <b>1981</b> bis <b>2010</b> (von insgesamt <b>2285</b> Artikeln)</td>
2839
+ </tr>
2840
+ <tr>
2841
+ <td class="smallText" align="left">Seiten: <a href="http://www.apotheke-online-internet.de/a/ac-page-66.html" class="pageResults" title=" vorherige Seite ">[&lt;&lt;&nbsp;vorherige]</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-60.html" class="pageResults" title=" Vorhergehende 12 Seiten ">...</a>&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-61.html" class="pageResults" title=" Seite 61 ">61</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-62.html" class="pageResults" title=" Seite 62 ">62</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-63.html" class="pageResults" title=" Seite 63 ">63</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-64.html" class="pageResults" title=" Seite 64 ">64</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-65.html" class="pageResults" title=" Seite 65 ">65</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-66.html" class="pageResults" title=" Seite 66 ">66</a>&nbsp;&nbsp;<b>67</b>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-68.html" class="pageResults" title=" Seite 68 ">68</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-69.html" class="pageResults" title=" Seite 69 ">69</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-70.html" class="pageResults" title=" Seite 70 ">70</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-71.html" class="pageResults" title=" Seite 71 ">71</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-72.html" class="pageResults" title=" Seite 72 ">72</a>&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-73.html" class="pageResults" title=" N&auml;chste 12 Seiten ">...</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-68.html" class="pageResults" title=" n&auml;chste Seite ">[n&auml;chste&nbsp;&gt;&gt;]</a>&nbsp;</td>
2842
+ </tr>
2843
+ </table></td>
2844
+ </tr>
2845
+
2846
+ </table>
2847
+ </div>
2848
+ </div>
2849
+ <div style="width:800px;margin:0px auto;clear: both;">
2850
+ <div align="center" class="ifooter">
2851
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center">
2852
+ <tr>
2853
+ <td align="center" valign="top">
2854
+ <a href="advanced_search_result.php?keywords=AVENE"><img height="60" alt="AV�NE" hspace="0" src="media/products/avene_logo.gif" width="60" align="baseline" border="0" /></a>
2855
+ <a href="advanced_search_result.php?keywords=BEPANTHOL"><img height="60" alt="BEPANTHOL" hspace="0" src="media/products/bepanthol_logo.gif" width="60" align="baseline" border="0" /></a>
2856
+ <a href="advanced_search_result.php?keywords=EUCERIN"><img height="60" alt="EUCERIN" hspace="0" src="media/products/eucerin_logo.gif" width="60" align="baseline" border="0" /></a>
2857
+ <a href="advanced_search_result.php?keywords=ROCHE+POSAY"><img height="60" alt="ROCHE POSAY" hspace="0" src="media/products/la-roche_logo.gif" width="60" align="baseline" border="0" /></a>
2858
+ <a href="advanced_search_result.php?keywords=VICHY"><img height="60" alt="VICHY" hspace="0" src="media/products/vichy_logo.gif" width="60" align="baseline" border="0" /></a>
2859
+ <a href="advanced_search_result.php?keywords=WELEDA"><img height="60" alt="WELEDA" hspace="0" src="media/products/weleda_logo.gif" width="60" align="baseline" border="0" /></a>
2860
+ <a href="advanced_search_result.php?keywords=ORTHOMOL"><img height="60" alt="Orthomol" hspace="0" src="media/products/orthomol_logo.gif" width="60" align="baseline" border="0" /></a>
2861
+ <a href="advanced_search_result.php?keywords=OLYNTH"><img height="60" alt="OLYNTH" hspace="0" src="media/products/olynth_logo.gif" width="60" align="baseline" border="0" /></a>
2862
+ <a href="advanced_search_result.php?keywords=LISTERINE"><img height="60" alt="LISTERINE" hspace="0" src="media/products/Listerine_logo.gif" width="60" align="baseline" border="0" /></a>
2863
+ <a href="advanced_search_result.php?keywords=PRIORIN"><img height="60" alt="PRIORIN" hspace="0" src="media/products/priorin_logo.gif" width="60" align="baseline" border="0" /></a>
2864
+ <a href="advanced_search_result.php?keywords=NUXE"><img height="60" alt="Nuxe" hspace="0" src="media/products/nuxe_logo.gif" width="60" align="baseline" border="0" /></a>
2865
+ <a href="advanced_search_result.php?keywords=NEUTROGENA"><img height="60" alt="Neutrogena" hspace="0" src="media/products/neutrogena_logo.gif" width="60" align="baseline" border="0" /></a>
2866
+ <a href="advanced_search_result.php?keywords=WIDMER"><img height="60" alt="LOUIS WIDMER" hspace="0" src="media/products/widmer_logo.gif" width="60" align="baseline" border="0" /></a>
2867
+ <a href="advanced_search_result.php?keywords=LAVERA"><img height="60" alt="Lavera" hspace="0" src="media/products/lavera_logo.gif" width="60" align="baseline" border="0" /></a>
2868
+ <a href="advanced_search_result.php?keywords=LADIVAL"><img height="60" alt="Ladival" hspace="0" src="media/products/ladival_logo.gif" width="60" align="baseline" border="0" /></a>
2869
+ <a href="advanced_search_result.php?keywords=INNEOV"><img height="60" alt="Inneov" hspace="0" src="media/products/inneov_logo.gif" width="60" align="baseline" border="0" /></a>
2870
+ <a href="advanced_search_result.php?keywords=HAUSCHKA"><img height="60" alt="Hauschka" hspace="0" src="media/products/hauschka_logo.gif" width="60" align="baseline" border="0" /></a>
2871
+ <a href="advanced_search_result.php?keywords=DUREX"><img height="60" alt="Durex" hspace="0" src="media/products/durex_logo.gif" width="60" align="baseline" border="0" /></a>
2872
+ <a href="/advanced_search_result.php?keywords=DUCRAY"><img height="60" alt="Ducray" hspace="0" src="media/products/ducray_logo.gif" width="60" align="baseline" border="0" /></a>
2873
+ <a href="advanced_search_result.php?keywords=CLAIRE+FISHER"><img height="60" alt="Claire-Fisher" hspace="0" src="media/products/claire-fisher_logo.gif" width="60" align="baseline" border="0" /></a>
2874
+ <a href="advanced_search_result.php?keywords=ASPIRIN"><img height="60" alt="Aspirin" hspace="0" src="media/products/aspirin_logo.gif" width="60" align="baseline" border="0" /></a>
2875
+ <a href="advanced_search_result.php?keywords=CELYOUNG"><img height="60" alt="CELYOUNG" hspace="0" src="media/products/celyoung_logo.gif" width="60" align="baseline" border="0" /></a>
2876
+ <a href="advanced_search_result.php?keywords=BELLY"><img height="60" alt="Belly" hspace="0" src="media/products/belly_logo.gif" width="60" align="baseline" border="0" /></a>
2877
+ </td>
2878
+ </tr>
2879
+ </table>
2880
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2881
+ <td align="center" valign="top">
2882
+
2883
+
2884
+ <table width="100%" border="0" cellpadding="2" cellspacing="0">
2885
+ <tr>
2886
+ <td class="infoBoxHeading_cloud">
2887
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2888
+ <tr>
2889
+ <td align="left" class="infoBoxHeadingTitle">Unsere Kunden suchen</td>
2890
+ </tr>
2891
+ </table>
2892
+ </td>
2893
+ </tr>
2894
+ <tr>
2895
+ <td class="infoBoxHeading_cloud" align="left">
2896
+ <table width="95%" border="0" cellpadding="2" cellspacing="0">
2897
+ <tr>
2898
+ <td class="boxText">
2899
+ <table border="0" width="100%" cellspacing="0" cellpadding="0">
2900
+ <tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
2901
+ <tr>
2902
+ <td align="center" class="boxText">
2903
+ <a title="Abies nigra" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Abies+nigra" style="font-size:15px; font-weight:500; color:#B8971A;">Abies nigra</a>&nbsp;
2904
+ <a title="Aescusan" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Aescusan" style="font-size:14px; font-weight:400; color:#B19735;">Aescusan</a>&nbsp;
2905
+ <a title="Alumen" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Alumen" style="font-size:10px; font-weight:200; color:#A0987C;">Alumen</a>&nbsp;
2906
+ <a title="Arum" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Arum" style="font-size:11px; font-weight:200; color:#A59868;">Arum</a>&nbsp;
2907
+ <a title="Augentropfen" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Augentropfen" style="font-size:9px; font-weight:100; color:#999895;">Augentropfen</a>&nbsp;
2908
+ <a title="Calcicare" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Calcicare" style="font-size:15px; font-weight:500; color:#B99716;">Calcicare</a>&nbsp;
2909
+ <a title="Celyoung Antiaging" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Celyoung+Antiaging" style="font-size:11px; font-weight:300; color:#A69864;">Celyoung Antiaging</a>&nbsp;
2910
+ <a title="Daktar" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Daktar" style="font-size:11px; font-weight:200; color:#A4986B;">Daktar</a>&nbsp;
2911
+ <a title="Dentinox" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Dentinox" style="font-size:11px; font-weight:300; color:#A69864;">Dentinox</a>&nbsp;
2912
+ <a title="Depuran" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Depuran" style="font-size:13px; font-weight:400; color:#B0973A;">Depuran</a>&nbsp;
2913
+ <a title="Enthaarung" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Enthaarung" style="font-size:15px; font-weight:500; color:#B8971B;">Enthaarung</a>&nbsp;
2914
+ <a title="Excipial lipolotio" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Excipial+lipolotio" style="font-size:12px; font-weight:300; color:#AB9750;">Excipial lipolotio</a>&nbsp;
2915
+ <a title="Folbene" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Folbene" style="font-size:13px; font-weight:400; color:#B0973C;">Folbene</a>&nbsp;
2916
+ <a title="Fosrenol" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Fosrenol" style="font-size:14px; font-weight:400; color:#B3972F;">Fosrenol</a>&nbsp;
2917
+ <a title="Galacordin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Galacordin" style="font-size:14px; font-weight:400; color:#B29734;">Galacordin</a>&nbsp;
2918
+ <a title="Gyno pevaryl" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Gyno+pevaryl" style="font-size:14px; font-weight:500; color:#B79720;">Gyno pevaryl</a>&nbsp;
2919
+ <a title="Hovnizym" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Hovnizym" style="font-size:10px; font-weight:200; color:#A0987B;">Hovnizym</a>&nbsp;
2920
+ <a title="Lactocerat" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Lactocerat" style="font-size:11px; font-weight:300; color:#A69863;">Lactocerat</a>&nbsp;
2921
+ <a title="Lofric" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Lofric" style="font-size:14px; font-weight:400; color:#B4972A;">Lofric</a>&nbsp;
2922
+ <a title="Neocate" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Neocate" style="font-size:9px; font-weight:100; color:#999895;">Neocate</a>&nbsp;
2923
+ <a title="Neydin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Neydin" style="font-size:10px; font-weight:100; color:#9C988A;">Neydin</a>&nbsp;
2924
+ <a title="Nutricomp" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Nutricomp" style="font-size:11px; font-weight:200; color:#A3986D;">Nutricomp</a>&nbsp;
2925
+ <a title="Preval" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Preval" style="font-size:15px; font-weight:500; color:#BA9715;">Preval</a>&nbsp;
2926
+ <a title="arnica globuli" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=arnica+globuli" style="font-size:9px; font-weight:100; color:#999999;">arnica globuli</a>&nbsp;
2927
+ <a title="drula pigment" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=drula+pigment" style="font-size:10px; font-weight:200; color:#9E9881;">drula pigment</a>&nbsp;
2928
+ <a title="optolind aufbau serum" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=optolind+aufbau+serum" style="font-size:10px; font-weight:200; color:#9E9881;">optolind aufbau serum</a>&nbsp;
2929
+ <a title="selen vitamin c" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=selen+vitamin+c" style="font-size:11px; font-weight:300; color:#A59866;">selen vitamin c</a>&nbsp;
2930
+ <a title="trigoa" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=trigoa" style="font-size:10px; font-weight:200; color:#A19878;">trigoa</a>&nbsp;
2931
+ <a title="vividrin nasenspray" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=vividrin+nasenspray" style="font-size:11px; font-weight:300; color:#A69863;">vividrin nasenspray</a>&nbsp;
2932
+ <a title="zodin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=zodin" style="font-size:12px; font-weight:300; color:#A8985A;">zodin</a>&nbsp;
2933
+ </td>
2934
+ </tr>
2935
+ <tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
2936
+ <tr>
2937
+ <td valign="middle" class="boxText">
2938
+ <a href="http://www.suchmaschinenoptimierung-hamburg.de/xtc-modules/german/tag-cloud.html" target="_blank">Was ist es?</a>
2939
+ </td>
2940
+ </tr>
2941
+ </table>
2942
+ </td>
2943
+ </tr>
2944
+ </table>
2945
+ </td>
2946
+ </tr>
2947
+ </table>
2948
+ </td></tr></table>
2949
+ <table width="800" height="5" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2950
+ <td align="center" valign="top"></td></tr></table>
2951
+ <table style="border-top: 2px solid; border-color: #3e7d52;" width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2952
+ <td colspan="5" align="center" valign="top" bgcolor="white" width="800">
2953
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2954
+ <td align="center" valign="top"></td></tr></table>
2955
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><tr>
2956
+ <td colspan="2" align="center" valign="top">
2957
+ <table width="100%" border="0" cellpadding="2" cellspacing="0"><tr>
2958
+ <td class="infoBoxcontent" align="center">
2959
+ <table width="95%" border="0" cellpadding="2" cellspacing="0"><tr>
2960
+ <td class="boxText" align="center"><a href="shop_content.php/coID/1">Liefer- und Versandkosten</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="shop_content.php/coID/3">AGB</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="shop_content.php/coID/4">Impressum</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="shop_content.php/coID/7">Kontakt</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="content/sitemap.html">Sitemap</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="shop_content.php/coID/2">Privatsph�re und Datenschutz</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="shop_content.php/coID/0">Bankverbindung</a>&nbsp;&nbsp;&nbsp;&nbsp;</td>
2961
+ </tr>
2962
+ <tr>
2963
+ <td align="center" valign="top">
2964
+ <a id="link2" href="a.html" target=_top>A</a>
2965
+ <a id="link2" href="b.html" target=_top>B</a>
2966
+ <a id="link2" href="c.html" target=_top>C</a>
2967
+ <a id="link2" href="d.html" target=_top>D</a>
2968
+ <a id="link2" href="e.html" target=_top>E</a>
2969
+ <a id="link2" href="f.html" target=_top>F</a>
2970
+ <a id="link2" href="g.html" target=_top>G</a>
2971
+ <a id="link2" href="h.html" target=_top>H</a>
2972
+ <a id="link2" href="i.html" target=_top>I</a>
2973
+ <a id="link2" href="j.html" target=_top>J</a>
2974
+ <a id="link2" href="k.html" target=_top>K</a>
2975
+ <a id="link2" href="l.html" target=_top>L</a>
2976
+ <a id="link2" href="m.html" target=_top>M</a>
2977
+ <a id="link2" href="n.html" target=_top>N</a>
2978
+ <a id="link2" href="o.html" target=_top>O</a>
2979
+ <a id="link2" href="p.html" target=_top>P</a>
2980
+ <a id="link2" href="q.html" target=_top>Q</a>
2981
+ <a id="link2" href="r.html" target=_top>R</a>
2982
+ <a id="link2" href="s.html" target=_top>S</a>
2983
+ <a id="link2" href="t.html" target=_top>T</a>
2984
+ <a id="link2" href="u.html" target=_top>U</a>
2985
+ <a id="link2" href="v.html" target=_top>V</a>
2986
+ <a id="link2" href="w.html" target=_top>W</a>
2987
+ <a id="link2" href="x.html" target=_top>X</a>
2988
+ <a id="link2" href="y.html" target=_top>Y</a>
2989
+ <a id="link2" href="z.html" target=_top>Z</a>
2990
+ </td></tr>
2991
+ <tr>
2992
+ <td align="center" valign="top">
2993
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-2.html" target=_top>A</a>
2994
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-3.html" target=_top>B</a>
2995
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-4.html" target=_top>C</a>
2996
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-5.html" target=_top>D</a>
2997
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-6.html" target=_top>E</a>
2998
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-7.html" target=_top>F</a>
2999
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-8.html" target=_top>G</a>
3000
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-9.html" target=_top>H</a>
3001
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-10.html" target=_top>I</a>
3002
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-11.html" target=_top>J</a>
3003
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-12.html" target=_top>K</a>
3004
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-13.html" target=_top>L</a>
3005
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-14.html" target=_top>M</a>
3006
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-15.html" target=_top>N</a>
3007
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-16.html" target=_top>O</a>
3008
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-17.html" target=_top>P</a>
3009
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-18.html" target=_top>Q</a>
3010
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-19.html" target=_top>R</a>
3011
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-20.html" target=_top>S</a>
3012
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-21.html" target=_top>T</a>
3013
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-22.html" target=_top>U</a>
3014
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-23.html" target=_top>V</a>
3015
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-24.html" target=_top>W</a>
3016
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-25.html" target=_top>X</a>
3017
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-26.html" target=_top>Y</a>
3018
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-27.html" target=_top>Z</a>
3019
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-28.html" target=_top>0-9</a>
3020
+ </td></tr></table></td></tr></table></td></tr></table>
3021
+ <table style="border-top: 1px solid; border-color: #3e7d52;" width="520" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><br>
3022
+ <tr><td colspan="2" align="center" valign="top" height="35"><font face='Arial,Helvetica' size=2 color="#3e7d52"><br>Alle Preise verstehen sich inkl. Umsatzsteuer, zuz&uuml;glich<a href="shop_content.php/coID/1"> Versandkosten</a></font></td>
3023
+ </tr><tr><td colspan="2" align="center" valign="top"><font face='Arial,Helvetica' size=1 color="#3e7d52">Zu Risiken und Nebenwirkungen lesen Sie die Packungsbeilage und fragen Sie Ihren Arzt oder Apotheker.</font></td>
3024
+ </tr><tr><td colspan="2" align="center" valign="top"><font face='Arial,Helvetica' size=1 color="#3e7d52"><a href="http://www.pharma24.de">Pharma24 Ihre Apotheke und Versandapotheke im Internet!</a><br><a href="http://www.apotheke-online-internet.de">www.apotheke-online-internet.de</a></font></td>
3025
+ </tr><tr><td colspan="2" align="center" valign="top"><font face='Arial,Helvetica' size=1 color="#3e7d52">Copyright &copy; 2007 by <b>www.pharma24.de</b>&nbsp;/&nbsp; Engineered by <a title="Apotheken Shop L�sungen von IKS-Business GmbH" href="http://www.iks-business.de" target="_new"><b>www.iks-business.de</b></a></font></td>
3026
+ </tr></table></td></tr></table></div></div><div class="copyright">eCommerce Engine &copy; 2006 <a href="http://www.xt-commerce.com" target="_blank">xt:Commerce Shopsoftware</a></div><div class="copyright"><a href="http://www.metasef.de" target="_blank">metasef SEO Modul</a></div></body></html>