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,3007 @@
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 ACRYLASTIC 2,5 m x 10 cm Binden" href="http://www.apotheke-online-internet.de/a/ac/p503675_acrylastic-2-5-m-x-10-cm-binden.html">ACRYLASTIC 2,5 m x 10 cm Binden</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> 180,96 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
+ 12 St Binden
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="ACRYLASTIC 2,5 m x 10 cm Binden von BSN MEDICAL GMBH" href="advanced_search_result.php?keywords=BSN MEDICAL GMBH">BSN MEDICAL GMBH</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/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
583
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</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/503675/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACRYLASTIC 2,5 m x 10 cm Binden' bestellen" title=" 1 x 'ACRYLASTIC 2,5 m x 10 cm Binden' 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 ACRYLASTIC 2,5 m x 6 cm Binden" href="http://www.apotheke-online-internet.de/a/ac/p503617_acrylastic-2-5-m-x-6-cm-binden.html">ACRYLASTIC 2,5 m x 6 cm Binden</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> 10,43 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
+ 1 St Binden
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="ACRYLASTIC 2,5 m x 6 cm Binden von BSN MEDICAL GMBH" href="advanced_search_result.php?keywords=BSN MEDICAL GMBH">BSN MEDICAL GMBH</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/503617/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACRYLASTIC 2,5 m x 6 cm Binden' bestellen" title=" 1 x 'ACRYLASTIC 2,5 m x 6 cm Binden' 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 ACRYLASTIC 2,5 m x 6 cm Binden" href="http://www.apotheke-online-internet.de/a/ac/p503623_acrylastic-2-5-m-x-6-cm-binden.html">ACRYLASTIC 2,5 m x 6 cm Binden</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> 118,75 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" face="Verdana,Geneva,Arial,Sans-serif">
703
+ Rezeptfrei</font> </font></a>
704
+ </td>
705
+ </tr>
706
+ <tr height="15">
707
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
708
+ </td>
709
+ <td align="left" valign="top" height="15" class="productinfosmall">
710
+ 12 St Binden
711
+ </td>
712
+ </tr>
713
+ <tr height="15">
714
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
715
+ </td>
716
+ <td align="left" valign="top" height="15" class="productinfosmall">
717
+ <a class="liste" title="ACRYLASTIC 2,5 m x 6 cm Binden von BSN MEDICAL GMBH" href="advanced_search_result.php?keywords=BSN MEDICAL GMBH">BSN MEDICAL GMBH</a>
718
+ </td>
719
+ </tr>
720
+ </table>
721
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
722
+ <tr>
723
+ <td>
724
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
725
+ <tr>
726
+ <td>
727
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
728
+ <tr>
729
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
730
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
731
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
732
+ </tr>
733
+ </table>
734
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
735
+ <tr>
736
+ <td><div align="right">
737
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/503623/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACRYLASTIC 2,5 m x 6 cm Binden' bestellen" title=" 1 x 'ACRYLASTIC 2,5 m x 6 cm Binden' bestellen " /></a>
738
+ </div>
739
+ </td>
740
+ </tr>
741
+ </table>
742
+ </td>
743
+ </tr>
744
+ </table>
745
+ </td>
746
+ </tr>
747
+ </table>
748
+ </td>
749
+ </tr>
750
+ <tr>
751
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
752
+ </td>
753
+ <td width="5"></td>
754
+ <td align="left"><h2><a title="Weitere Informationen zu ACRYLASTIC 2,5 m x 8 cm Binden" href="http://www.apotheke-online-internet.de/a/ac/p503646_acrylastic-2-5-m-x-8-cm-binden.html">ACRYLASTIC 2,5 m x 8 cm Binden</a></h2></td>
755
+ </tr>
756
+ <tr>
757
+ <td></td>
758
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
759
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
760
+ <tr>
761
+ <td align="right" class="main2">
762
+ <strong> 12,83 EUR </strong><br />
763
+ </td>
764
+ </tr>
765
+ <tr>
766
+ <td align="right" class="main">
767
+ 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>
768
+ </td>
769
+ </tr>
770
+ </table>
771
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
772
+ <tr height="15">
773
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
774
+ </td>
775
+ <td align="left" valign="top" height="15">
776
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
777
+ Rezeptfrei</font> </font></a>
778
+ </td>
779
+ </tr>
780
+ <tr height="15">
781
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
782
+ </td>
783
+ <td align="left" valign="top" height="15" class="productinfosmall">
784
+ 1 St Binden
785
+ </td>
786
+ </tr>
787
+ <tr height="15">
788
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
789
+ </td>
790
+ <td align="left" valign="top" height="15" class="productinfosmall">
791
+ <a class="liste" title="ACRYLASTIC 2,5 m x 8 cm Binden von BSN MEDICAL GMBH" href="advanced_search_result.php?keywords=BSN MEDICAL GMBH">BSN MEDICAL GMBH</a>
792
+ </td>
793
+ </tr>
794
+ </table>
795
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
796
+ <tr>
797
+ <td>
798
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
799
+ <tr>
800
+ <td>
801
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
802
+ <tr>
803
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
804
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
805
+ <td valign="left" class="main" width="200">Sofort</td>
806
+ </tr>
807
+ </table>
808
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
809
+ <tr>
810
+ <td><div align="right">
811
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/503646/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACRYLASTIC 2,5 m x 8 cm Binden' bestellen" title=" 1 x 'ACRYLASTIC 2,5 m x 8 cm Binden' bestellen " /></a>
812
+ </div>
813
+ </td>
814
+ </tr>
815
+ </table>
816
+ </td>
817
+ </tr>
818
+ </table>
819
+ </td>
820
+ </tr>
821
+ </table>
822
+ </td>
823
+ </tr>
824
+ <tr>
825
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
826
+ </td>
827
+ <td width="5"></td>
828
+ <td align="left"><h2><a title="Weitere Informationen zu ACRYLASTIC 2,5 m x 8 cm Binden" href="http://www.apotheke-online-internet.de/a/ac/p503652_acrylastic-2-5-m-x-8-cm-binden.html">ACRYLASTIC 2,5 m x 8 cm Binden</a></h2></td>
829
+ </tr>
830
+ <tr>
831
+ <td></td>
832
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
833
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
834
+ <tr>
835
+ <td align="right" class="main2">
836
+ <strong> 146,08 EUR </strong><br />
837
+ </td>
838
+ </tr>
839
+ <tr>
840
+ <td align="right" class="main">
841
+ 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>
842
+ </td>
843
+ </tr>
844
+ </table>
845
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
846
+ <tr height="15">
847
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
848
+ </td>
849
+ <td align="left" valign="top" height="15">
850
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
851
+ Rezeptfrei</font> </font></a>
852
+ </td>
853
+ </tr>
854
+ <tr height="15">
855
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
856
+ </td>
857
+ <td align="left" valign="top" height="15" class="productinfosmall">
858
+ 12 St Binden
859
+ </td>
860
+ </tr>
861
+ <tr height="15">
862
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
863
+ </td>
864
+ <td align="left" valign="top" height="15" class="productinfosmall">
865
+ <a class="liste" title="ACRYLASTIC 2,5 m x 8 cm Binden von BSN MEDICAL GMBH" href="advanced_search_result.php?keywords=BSN MEDICAL GMBH">BSN MEDICAL GMBH</a>
866
+ </td>
867
+ </tr>
868
+ </table>
869
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
870
+ <tr>
871
+ <td>
872
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
873
+ <tr>
874
+ <td>
875
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
876
+ <tr>
877
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
878
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
879
+ <td valign="left" class="main" width="200">Sofort</td>
880
+ </tr>
881
+ </table>
882
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
883
+ <tr>
884
+ <td><div align="right">
885
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/503652/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACRYLASTIC 2,5 m x 8 cm Binden' bestellen" title=" 1 x 'ACRYLASTIC 2,5 m x 8 cm Binden' bestellen " /></a>
886
+ </div>
887
+ </td>
888
+ </tr>
889
+ </table>
890
+ </td>
891
+ </tr>
892
+ </table>
893
+ </td>
894
+ </tr>
895
+ </table>
896
+ </td>
897
+ </tr>
898
+ <tr>
899
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
900
+ </td>
901
+ <td width="5"></td>
902
+ <td align="left"><h2><a title="Weitere Informationen zu ACRYLBINDE 10cmx2,5m hypoallergen" href="http://www.apotheke-online-internet.de/a/ac/p4793411_acrylbinde-10cmx2-5m-hypoallergen.html">ACRYLBINDE 10cmx2,5m hypoallergen</a></h2></td>
903
+ </tr>
904
+ <tr>
905
+ <td></td>
906
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
907
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
908
+ <tr>
909
+ <td align="right" class="main2">
910
+ <strong> 11,13 EUR </strong><br />
911
+ </td>
912
+ </tr>
913
+ <tr>
914
+ <td align="right" class="main">
915
+ 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>
916
+ </td>
917
+ </tr>
918
+ </table>
919
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
920
+ <tr height="15">
921
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
922
+ </td>
923
+ <td align="left" valign="top" height="15">
924
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
925
+ Rezeptfrei</font> </font></a>
926
+ </td>
927
+ </tr>
928
+ <tr height="15">
929
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
930
+ </td>
931
+ <td align="left" valign="top" height="15" class="productinfosmall">
932
+ 1 St Binden
933
+ </td>
934
+ </tr>
935
+ <tr height="15">
936
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
937
+ </td>
938
+ <td align="left" valign="top" height="15" class="productinfosmall">
939
+ <a class="liste" title="ACRYLBINDE 10cmx2,5m hypoallergen von FINK & WALTER GMBH" href="advanced_search_result.php?keywords=FINK & WALTER GMBH">FINK & WALTER GMBH</a>
940
+ </td>
941
+ </tr>
942
+ </table>
943
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
944
+ <tr>
945
+ <td>
946
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
947
+ <tr>
948
+ <td>
949
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
950
+ <tr>
951
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
952
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
953
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
954
+ </tr>
955
+ </table>
956
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
957
+ <tr>
958
+ <td><div align="right">
959
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4793411/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACRYLBINDE 10cmx2,5m hypoallergen' bestellen" title=" 1 x 'ACRYLBINDE 10cmx2,5m hypoallergen' bestellen " /></a>
960
+ </div>
961
+ </td>
962
+ </tr>
963
+ </table>
964
+ </td>
965
+ </tr>
966
+ </table>
967
+ </td>
968
+ </tr>
969
+ </table>
970
+ </td>
971
+ </tr>
972
+ <tr>
973
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
974
+ </td>
975
+ <td width="5"></td>
976
+ <td align="left"><h2><a title="Weitere Informationen zu ACRYLBINDE 6cmx2,5m hypoallergen" href="http://www.apotheke-online-internet.de/a/ac/p4793345_acrylbinde-6cmx2-5m-hypoallergen.html">ACRYLBINDE 6cmx2,5m hypoallergen</a></h2></td>
977
+ </tr>
978
+ <tr>
979
+ <td></td>
980
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
981
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
982
+ <tr>
983
+ <td align="right" class="main2">
984
+ <strong> 8,51 EUR </strong><br />
985
+ </td>
986
+ </tr>
987
+ <tr>
988
+ <td align="right" class="main">
989
+ 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>
990
+ </td>
991
+ </tr>
992
+ </table>
993
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
994
+ <tr height="15">
995
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
996
+ </td>
997
+ <td align="left" valign="top" height="15">
998
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
999
+ Rezeptfrei</font> </font></a>
1000
+ </td>
1001
+ </tr>
1002
+ <tr height="15">
1003
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1004
+ </td>
1005
+ <td align="left" valign="top" height="15" class="productinfosmall">
1006
+ 1 St Binden
1007
+ </td>
1008
+ </tr>
1009
+ <tr height="15">
1010
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1011
+ </td>
1012
+ <td align="left" valign="top" height="15" class="productinfosmall">
1013
+ <a class="liste" title="ACRYLBINDE 6cmx2,5m hypoallergen von FINK & WALTER GMBH" href="advanced_search_result.php?keywords=FINK & WALTER GMBH">FINK & WALTER GMBH</a>
1014
+ </td>
1015
+ </tr>
1016
+ </table>
1017
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1018
+ <tr>
1019
+ <td>
1020
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1021
+ <tr>
1022
+ <td>
1023
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1024
+ <tr>
1025
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1026
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1027
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1028
+ </tr>
1029
+ </table>
1030
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1031
+ <tr>
1032
+ <td><div align="right">
1033
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4793345/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACRYLBINDE 6cmx2,5m hypoallergen' bestellen" title=" 1 x 'ACRYLBINDE 6cmx2,5m hypoallergen' bestellen " /></a>
1034
+ </div>
1035
+ </td>
1036
+ </tr>
1037
+ </table>
1038
+ </td>
1039
+ </tr>
1040
+ </table>
1041
+ </td>
1042
+ </tr>
1043
+ </table>
1044
+ </td>
1045
+ </tr>
1046
+ <tr>
1047
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1048
+ </td>
1049
+ <td width="5"></td>
1050
+ <td align="left"><h2><a title="Weitere Informationen zu ACRYLBINDE 8cmx2,5m hypoallergen" href="http://www.apotheke-online-internet.de/a/ac/p4793405_acrylbinde-8cmx2-5m-hypoallergen.html">ACRYLBINDE 8cmx2,5m hypoallergen</a></h2></td>
1051
+ </tr>
1052
+ <tr>
1053
+ <td></td>
1054
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1055
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1056
+ <tr>
1057
+ <td align="right" class="main2">
1058
+ <strong> 9,82 EUR </strong><br />
1059
+ </td>
1060
+ </tr>
1061
+ <tr>
1062
+ <td align="right" class="main">
1063
+ 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>
1064
+ </td>
1065
+ </tr>
1066
+ </table>
1067
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1068
+ <tr height="15">
1069
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1070
+ </td>
1071
+ <td align="left" valign="top" height="15">
1072
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1073
+ Rezeptfrei</font> </font></a>
1074
+ </td>
1075
+ </tr>
1076
+ <tr height="15">
1077
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1078
+ </td>
1079
+ <td align="left" valign="top" height="15" class="productinfosmall">
1080
+ 1 St Binden
1081
+ </td>
1082
+ </tr>
1083
+ <tr height="15">
1084
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1085
+ </td>
1086
+ <td align="left" valign="top" height="15" class="productinfosmall">
1087
+ <a class="liste" title="ACRYLBINDE 8cmx2,5m hypoallergen von FINK & WALTER GMBH" href="advanced_search_result.php?keywords=FINK & WALTER GMBH">FINK & WALTER GMBH</a>
1088
+ </td>
1089
+ </tr>
1090
+ </table>
1091
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1092
+ <tr>
1093
+ <td>
1094
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1095
+ <tr>
1096
+ <td>
1097
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1098
+ <tr>
1099
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1100
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1101
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1102
+ </tr>
1103
+ </table>
1104
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1105
+ <tr>
1106
+ <td><div align="right">
1107
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4793405/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACRYLBINDE 8cmx2,5m hypoallergen' bestellen" title=" 1 x 'ACRYLBINDE 8cmx2,5m hypoallergen' bestellen " /></a>
1108
+ </div>
1109
+ </td>
1110
+ </tr>
1111
+ </table>
1112
+ </td>
1113
+ </tr>
1114
+ </table>
1115
+ </td>
1116
+ </tr>
1117
+ </table>
1118
+ </td>
1119
+ </tr>
1120
+ <tr>
1121
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1122
+ </td>
1123
+ <td width="5"></td>
1124
+ <td align="left"><h2><a title="Weitere Informationen zu ACT Dental Floss Zahnseide extra gleit.ungew." href="http://www.apotheke-online-internet.de/a/ac/p363487_act-dental-floss-zahnseide-extra-gleit-ungew-.html">ACT Dental Floss Zahnseide extra gleit.ungew.</a></h2></td>
1125
+ </tr>
1126
+ <tr>
1127
+ <td></td>
1128
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1129
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1130
+ <tr>
1131
+ <td align="right" class="main2">
1132
+ <strong> 2,60 EUR </strong><br />
1133
+ </td>
1134
+ </tr>
1135
+ <tr>
1136
+ <td align="right" class="main">
1137
+ 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>
1138
+ </td>
1139
+ </tr>
1140
+ </table>
1141
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1142
+ <tr height="15">
1143
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1144
+ </td>
1145
+ <td align="left" valign="top" height="15">
1146
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1147
+ Rezeptfrei</font> </font></a>
1148
+ </td>
1149
+ </tr>
1150
+ <tr height="15">
1151
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1152
+ </td>
1153
+ <td align="left" valign="top" height="15" class="productinfosmall">
1154
+ 20 m
1155
+ </td>
1156
+ </tr>
1157
+ <tr height="15">
1158
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1159
+ </td>
1160
+ <td align="left" valign="top" height="15" class="productinfosmall">
1161
+ <a class="liste" title="ACT Dental Floss Zahnseide extra gleit.ungew. von ETHICON GMBH BER. AWC" href="advanced_search_result.php?keywords=ETHICON GMBH BER. AWC">ETHICON GMBH BER. AWC</a>
1162
+ </td>
1163
+ </tr>
1164
+ </table>
1165
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1166
+ <tr>
1167
+ <td>
1168
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1169
+ <tr>
1170
+ <td>
1171
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1172
+ <tr>
1173
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1174
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1175
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1176
+ </tr>
1177
+ </table>
1178
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1179
+ <tr>
1180
+ <td><div align="right">
1181
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/363487/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACT Dental Floss Zahnseide extra gleit.ungew.' bestellen" title=" 1 x 'ACT Dental Floss Zahnseide extra gleit.ungew.' bestellen " /></a>
1182
+ </div>
1183
+ </td>
1184
+ </tr>
1185
+ </table>
1186
+ </td>
1187
+ </tr>
1188
+ </table>
1189
+ </td>
1190
+ </tr>
1191
+ </table>
1192
+ </td>
1193
+ </tr>
1194
+ <tr>
1195
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1196
+ </td>
1197
+ <td width="5"></td>
1198
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA D 4 Globuli" href="http://www.apotheke-online-internet.de/a/ac/p1917189_actaea-d-4-globuli.html">ACTAEA D 4 Globuli</a></h2></td>
1199
+ </tr>
1200
+ <tr>
1201
+ <td></td>
1202
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1203
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1204
+ <tr>
1205
+ <td align="right" class="main2">
1206
+ <strong> 9,05 EUR </strong><br />
1207
+ </td>
1208
+ </tr>
1209
+ <tr>
1210
+ <td align="right" class="main">
1211
+ 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>
1212
+ </td>
1213
+ </tr>
1214
+ </table>
1215
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1216
+ <tr height="15">
1217
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1218
+ </td>
1219
+ <td align="left" valign="top" height="15">
1220
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1221
+ Rezeptfrei</font> </font></a>
1222
+ </td>
1223
+ </tr>
1224
+ <tr height="15">
1225
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1226
+ </td>
1227
+ <td align="left" valign="top" height="15" class="productinfosmall">
1228
+ 10 g Globuli
1229
+ </td>
1230
+ </tr>
1231
+ <tr height="15">
1232
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1233
+ </td>
1234
+ <td align="left" valign="top" height="15" class="productinfosmall">
1235
+ <a class="liste" title="ACTAEA D 4 Globuli von STAUFEN PHARMA" href="advanced_search_result.php?keywords=STAUFEN PHARMA">STAUFEN PHARMA</a>
1236
+ </td>
1237
+ </tr>
1238
+ </table>
1239
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1240
+ <tr>
1241
+ <td>
1242
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1243
+ <tr>
1244
+ <td>
1245
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1246
+ <tr>
1247
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1248
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1249
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1250
+ </tr>
1251
+ </table>
1252
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1253
+ <tr>
1254
+ <td><div align="right">
1255
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1917189/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA D 4 Globuli' bestellen" title=" 1 x 'ACTAEA D 4 Globuli' bestellen " /></a>
1256
+ </div>
1257
+ </td>
1258
+ </tr>
1259
+ </table>
1260
+ </td>
1261
+ </tr>
1262
+ </table>
1263
+ </td>
1264
+ </tr>
1265
+ </table>
1266
+ </td>
1267
+ </tr>
1268
+ <tr>
1269
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1270
+ </td>
1271
+ <td width="5"></td>
1272
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA C 3 Globuli" href="http://www.apotheke-online-internet.de/a/ac/p928593_actaea-spicata-c-3-globuli.html">ACTAEA SPICATA C 3 Globuli</a></h2></td>
1273
+ </tr>
1274
+ <tr>
1275
+ <td></td>
1276
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1277
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1278
+ <tr>
1279
+ <td align="right" class="main2">
1280
+ <strong> 4,90 EUR </strong><br />
1281
+ </td>
1282
+ </tr>
1283
+ <tr>
1284
+ <td align="right" class="main">
1285
+ 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>
1286
+ </td>
1287
+ </tr>
1288
+ </table>
1289
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1290
+ <tr height="15">
1291
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1292
+ </td>
1293
+ <td align="left" valign="top" height="15">
1294
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1295
+ Rezeptfrei</font> </font></a>
1296
+ </td>
1297
+ </tr>
1298
+ <tr height="15">
1299
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1300
+ </td>
1301
+ <td align="left" valign="top" height="15" class="productinfosmall">
1302
+ 10 g Globuli
1303
+ </td>
1304
+ </tr>
1305
+ <tr height="15">
1306
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1307
+ </td>
1308
+ <td align="left" valign="top" height="15" class="productinfosmall">
1309
+ <a class="liste" title="ACTAEA SPICATA C 3 Globuli von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
1310
+ </td>
1311
+ </tr>
1312
+ </table>
1313
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1314
+ <tr>
1315
+ <td>
1316
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1317
+ <tr>
1318
+ <td>
1319
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1320
+ <tr>
1321
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1322
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1323
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1324
+ </tr>
1325
+ </table>
1326
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1327
+ <tr>
1328
+ <td><div align="right">
1329
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/928593/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA C 3 Globuli' bestellen" title=" 1 x 'ACTAEA SPICATA C 3 Globuli' bestellen " /></a>
1330
+ </div>
1331
+ </td>
1332
+ </tr>
1333
+ </table>
1334
+ </td>
1335
+ </tr>
1336
+ </table>
1337
+ </td>
1338
+ </tr>
1339
+ </table>
1340
+ </td>
1341
+ </tr>
1342
+ <tr>
1343
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1344
+ </td>
1345
+ <td width="5"></td>
1346
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA C 30 Globuli" href="http://www.apotheke-online-internet.de/a/ac/p928601_actaea-spicata-c-30-globuli.html">ACTAEA SPICATA C 30 Globuli</a></h2></td>
1347
+ </tr>
1348
+ <tr>
1349
+ <td></td>
1350
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1351
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1352
+ <tr>
1353
+ <td align="right" class="main2">
1354
+ <strong> 4,90 EUR </strong><br />
1355
+ </td>
1356
+ </tr>
1357
+ <tr>
1358
+ <td align="right" class="main">
1359
+ 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>
1360
+ </td>
1361
+ </tr>
1362
+ </table>
1363
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1364
+ <tr height="15">
1365
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1366
+ </td>
1367
+ <td align="left" valign="top" height="15">
1368
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1369
+ Rezeptfrei</font> </font></a>
1370
+ </td>
1371
+ </tr>
1372
+ <tr height="15">
1373
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1374
+ </td>
1375
+ <td align="left" valign="top" height="15" class="productinfosmall">
1376
+ 10 g Globuli
1377
+ </td>
1378
+ </tr>
1379
+ <tr height="15">
1380
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1381
+ </td>
1382
+ <td align="left" valign="top" height="15" class="productinfosmall">
1383
+ <a class="liste" title="ACTAEA SPICATA C 30 Globuli von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
1384
+ </td>
1385
+ </tr>
1386
+ </table>
1387
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1388
+ <tr>
1389
+ <td>
1390
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1391
+ <tr>
1392
+ <td>
1393
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1394
+ <tr>
1395
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1396
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1397
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1398
+ </tr>
1399
+ </table>
1400
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1401
+ <tr>
1402
+ <td><div align="right">
1403
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/928601/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA C 30 Globuli' bestellen" title=" 1 x 'ACTAEA SPICATA C 30 Globuli' bestellen " /></a>
1404
+ </div>
1405
+ </td>
1406
+ </tr>
1407
+ </table>
1408
+ </td>
1409
+ </tr>
1410
+ </table>
1411
+ </td>
1412
+ </tr>
1413
+ </table>
1414
+ </td>
1415
+ </tr>
1416
+ <tr>
1417
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1418
+ </td>
1419
+ <td width="5"></td>
1420
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA C 7 Globuli" href="http://www.apotheke-online-internet.de/a/ac/p929641_actaea-spicata-c-7-globuli.html">ACTAEA SPICATA C 7 Globuli</a></h2></td>
1421
+ </tr>
1422
+ <tr>
1423
+ <td></td>
1424
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1425
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1426
+ <tr>
1427
+ <td align="right" class="main2">
1428
+ <strong> 4,90 EUR </strong><br />
1429
+ </td>
1430
+ </tr>
1431
+ <tr>
1432
+ <td align="right" class="main">
1433
+ 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>
1434
+ </td>
1435
+ </tr>
1436
+ </table>
1437
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1438
+ <tr height="15">
1439
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1440
+ </td>
1441
+ <td align="left" valign="top" height="15">
1442
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1443
+ Rezeptfrei</font> </font></a>
1444
+ </td>
1445
+ </tr>
1446
+ <tr height="15">
1447
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1448
+ </td>
1449
+ <td align="left" valign="top" height="15" class="productinfosmall">
1450
+ 10 g Globuli
1451
+ </td>
1452
+ </tr>
1453
+ <tr height="15">
1454
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1455
+ </td>
1456
+ <td align="left" valign="top" height="15" class="productinfosmall">
1457
+ <a class="liste" title="ACTAEA SPICATA C 7 Globuli von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
1458
+ </td>
1459
+ </tr>
1460
+ </table>
1461
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1462
+ <tr>
1463
+ <td>
1464
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1465
+ <tr>
1466
+ <td>
1467
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1468
+ <tr>
1469
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1470
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1471
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1472
+ </tr>
1473
+ </table>
1474
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1475
+ <tr>
1476
+ <td><div align="right">
1477
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/929641/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA C 7 Globuli' bestellen" title=" 1 x 'ACTAEA SPICATA C 7 Globuli' bestellen " /></a>
1478
+ </div>
1479
+ </td>
1480
+ </tr>
1481
+ </table>
1482
+ </td>
1483
+ </tr>
1484
+ </table>
1485
+ </td>
1486
+ </tr>
1487
+ </table>
1488
+ </td>
1489
+ </tr>
1490
+ <tr>
1491
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1492
+ </td>
1493
+ <td width="5"></td>
1494
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 1 Dilution" href="http://www.apotheke-online-internet.de/a/ac/p928618_actaea-spicata-d-1-dilution.html">ACTAEA SPICATA D 1 Dilution</a></h2></td>
1495
+ </tr>
1496
+ <tr>
1497
+ <td></td>
1498
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1499
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1500
+ <tr>
1501
+ <td align="right" class="main2">
1502
+ <strong> 13,71 EUR </strong><br />
1503
+ </td>
1504
+ </tr>
1505
+ <tr>
1506
+ <td align="right" class="main">
1507
+ 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>
1508
+ </td>
1509
+ </tr>
1510
+ </table>
1511
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1512
+ <tr height="15">
1513
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1514
+ </td>
1515
+ <td align="left" valign="top" height="15">
1516
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
1517
+ <a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
1518
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b>&nbsp;&nbsp;Info!</b>
1519
+ </font></a>
1520
+ </td>
1521
+ </tr>
1522
+ <tr height="15">
1523
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1524
+ </td>
1525
+ <td align="left" valign="top" height="15" class="productinfosmall">
1526
+ 20 ml Dilution
1527
+ </td>
1528
+ </tr>
1529
+ <tr height="15">
1530
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1531
+ </td>
1532
+ <td align="left" valign="top" height="15" class="productinfosmall">
1533
+ <a class="liste" title="ACTAEA SPICATA D 1 Dilution von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
1534
+ </td>
1535
+ </tr>
1536
+ </table>
1537
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1538
+ <tr>
1539
+ <td>
1540
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1541
+ <tr>
1542
+ <td>
1543
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1544
+ <tr>
1545
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1546
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1547
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1548
+ </tr>
1549
+ </table>
1550
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1551
+ <tr>
1552
+ <td><div align="right">
1553
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/928618/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 1 Dilution' bestellen" title=" 1 x 'ACTAEA SPICATA D 1 Dilution' bestellen " /></a>
1554
+ </div>
1555
+ </td>
1556
+ </tr>
1557
+ </table>
1558
+ </td>
1559
+ </tr>
1560
+ </table>
1561
+ </td>
1562
+ </tr>
1563
+ </table>
1564
+ </td>
1565
+ </tr>
1566
+ <tr>
1567
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1568
+ </td>
1569
+ <td width="5"></td>
1570
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 12 Dilution" href="http://www.apotheke-online-internet.de/a/ac/p929368_actaea-spicata-d-12-dilution.html">ACTAEA SPICATA D 12 Dilution</a></h2></td>
1571
+ </tr>
1572
+ <tr>
1573
+ <td></td>
1574
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1575
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1576
+ <tr>
1577
+ <td align="right" class="main2">
1578
+ <strong> 5,97 EUR </strong><br />
1579
+ </td>
1580
+ </tr>
1581
+ <tr>
1582
+ <td align="right" class="main">
1583
+ 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>
1584
+ </td>
1585
+ </tr>
1586
+ </table>
1587
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1588
+ <tr height="15">
1589
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1590
+ </td>
1591
+ <td align="left" valign="top" height="15">
1592
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1593
+ Rezeptfrei</font> </font></a>
1594
+ </td>
1595
+ </tr>
1596
+ <tr height="15">
1597
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1598
+ </td>
1599
+ <td align="left" valign="top" height="15" class="productinfosmall">
1600
+ 20 ml Dilution
1601
+ </td>
1602
+ </tr>
1603
+ <tr height="15">
1604
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1605
+ </td>
1606
+ <td align="left" valign="top" height="15" class="productinfosmall">
1607
+ <a class="liste" title="ACTAEA SPICATA D 12 Dilution von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
1608
+ </td>
1609
+ </tr>
1610
+ </table>
1611
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1612
+ <tr>
1613
+ <td>
1614
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1615
+ <tr>
1616
+ <td>
1617
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1618
+ <tr>
1619
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1620
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1621
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1622
+ </tr>
1623
+ </table>
1624
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1625
+ <tr>
1626
+ <td><div align="right">
1627
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/929368/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 12 Dilution' bestellen" title=" 1 x 'ACTAEA SPICATA D 12 Dilution' bestellen " /></a>
1628
+ </div>
1629
+ </td>
1630
+ </tr>
1631
+ </table>
1632
+ </td>
1633
+ </tr>
1634
+ </table>
1635
+ </td>
1636
+ </tr>
1637
+ </table>
1638
+ </td>
1639
+ </tr>
1640
+ <tr>
1641
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1642
+ </td>
1643
+ <td width="5"></td>
1644
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 12 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p8479120_actaea-spicata-d-12-tabletten.html">ACTAEA SPICATA D 12 Tabletten</a></h2></td>
1645
+ </tr>
1646
+ <tr>
1647
+ <td></td>
1648
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1649
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1650
+ <tr>
1651
+ <td align="right" class="main2">
1652
+ <strong> 7,46 EUR </strong><br />
1653
+ </td>
1654
+ </tr>
1655
+ <tr>
1656
+ <td align="right" class="main">
1657
+ 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>
1658
+ </td>
1659
+ </tr>
1660
+ </table>
1661
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1662
+ <tr height="15">
1663
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1664
+ </td>
1665
+ <td align="left" valign="top" height="15">
1666
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1667
+ Rezeptfrei</font> </font></a>
1668
+ </td>
1669
+ </tr>
1670
+ <tr height="15">
1671
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1672
+ </td>
1673
+ <td align="left" valign="top" height="15" class="productinfosmall">
1674
+ 80 St Tabletten
1675
+ </td>
1676
+ </tr>
1677
+ <tr height="15">
1678
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1679
+ </td>
1680
+ <td align="left" valign="top" height="15" class="productinfosmall">
1681
+ <a class="liste" title="ACTAEA SPICATA D 12 Tabletten von DHU-ARZNEIMITTEL" href="advanced_search_result.php?keywords=DHU-ARZNEIMITTEL">DHU-ARZNEIMITTEL</a>
1682
+ </td>
1683
+ </tr>
1684
+ </table>
1685
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1686
+ <tr>
1687
+ <td>
1688
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1689
+ <tr>
1690
+ <td>
1691
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1692
+ <tr>
1693
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1694
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1695
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1696
+ </tr>
1697
+ </table>
1698
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1699
+ <tr>
1700
+ <td><div align="right">
1701
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/8479120/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 12 Tabletten' bestellen" title=" 1 x 'ACTAEA SPICATA D 12 Tabletten' bestellen " /></a>
1702
+ </div>
1703
+ </td>
1704
+ </tr>
1705
+ </table>
1706
+ </td>
1707
+ </tr>
1708
+ </table>
1709
+ </td>
1710
+ </tr>
1711
+ </table>
1712
+ </td>
1713
+ </tr>
1714
+ <tr>
1715
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1716
+ </td>
1717
+ <td width="5"></td>
1718
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 3 Dilution" href="http://www.apotheke-online-internet.de/a/ac/p2605670_actaea-spicata-d-3-dilution.html">ACTAEA SPICATA D 3 Dilution</a></h2></td>
1719
+ </tr>
1720
+ <tr>
1721
+ <td></td>
1722
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1723
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1724
+ <tr>
1725
+ <td align="right" class="main2">
1726
+ <strong> 7,46 EUR </strong><br />
1727
+ </td>
1728
+ </tr>
1729
+ <tr>
1730
+ <td align="right" class="main">
1731
+ 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>
1732
+ </td>
1733
+ </tr>
1734
+ </table>
1735
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1736
+ <tr height="15">
1737
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1738
+ </td>
1739
+ <td align="left" valign="top" height="15">
1740
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1741
+ Rezeptfrei</font> </font></a>
1742
+ </td>
1743
+ </tr>
1744
+ <tr height="15">
1745
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1746
+ </td>
1747
+ <td align="left" valign="top" height="15" class="productinfosmall">
1748
+ 20 ml Dilution
1749
+ </td>
1750
+ </tr>
1751
+ <tr height="15">
1752
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1753
+ </td>
1754
+ <td align="left" valign="top" height="15" class="productinfosmall">
1755
+ <a class="liste" title="ACTAEA SPICATA D 3 Dilution von DHU-ARZNEIMITTEL" href="advanced_search_result.php?keywords=DHU-ARZNEIMITTEL">DHU-ARZNEIMITTEL</a>
1756
+ </td>
1757
+ </tr>
1758
+ </table>
1759
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1760
+ <tr>
1761
+ <td>
1762
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1763
+ <tr>
1764
+ <td>
1765
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1766
+ <tr>
1767
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1768
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1769
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1770
+ </tr>
1771
+ </table>
1772
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1773
+ <tr>
1774
+ <td><div align="right">
1775
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/2605670/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 3 Dilution' bestellen" title=" 1 x 'ACTAEA SPICATA D 3 Dilution' bestellen " /></a>
1776
+ </div>
1777
+ </td>
1778
+ </tr>
1779
+ </table>
1780
+ </td>
1781
+ </tr>
1782
+ </table>
1783
+ </td>
1784
+ </tr>
1785
+ </table>
1786
+ </td>
1787
+ </tr>
1788
+ <tr>
1789
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1790
+ </td>
1791
+ <td width="5"></td>
1792
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 4 Dilution" href="http://www.apotheke-online-internet.de/a/ac/p928624_actaea-spicata-d-4-dilution.html">ACTAEA SPICATA D 4 Dilution</a></h2></td>
1793
+ </tr>
1794
+ <tr>
1795
+ <td></td>
1796
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1797
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1798
+ <tr>
1799
+ <td align="right" class="main2">
1800
+ <strong> 14,30 EUR </strong><br />
1801
+ </td>
1802
+ </tr>
1803
+ <tr>
1804
+ <td align="right" class="main">
1805
+ 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>
1806
+ </td>
1807
+ </tr>
1808
+ </table>
1809
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1810
+ <tr height="15">
1811
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1812
+ </td>
1813
+ <td align="left" valign="top" height="15">
1814
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1815
+ Rezeptfrei</font> </font></a>
1816
+ </td>
1817
+ </tr>
1818
+ <tr height="15">
1819
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1820
+ </td>
1821
+ <td align="left" valign="top" height="15" class="productinfosmall">
1822
+ 50 ml Dilution
1823
+ </td>
1824
+ </tr>
1825
+ <tr height="15">
1826
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1827
+ </td>
1828
+ <td align="left" valign="top" height="15" class="productinfosmall">
1829
+ <a class="liste" title="ACTAEA SPICATA D 4 Dilution von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
1830
+ </td>
1831
+ </tr>
1832
+ </table>
1833
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1834
+ <tr>
1835
+ <td>
1836
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1837
+ <tr>
1838
+ <td>
1839
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1840
+ <tr>
1841
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1842
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1843
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1844
+ </tr>
1845
+ </table>
1846
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1847
+ <tr>
1848
+ <td><div align="right">
1849
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/928624/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 4 Dilution' bestellen" title=" 1 x 'ACTAEA SPICATA D 4 Dilution' bestellen " /></a>
1850
+ </div>
1851
+ </td>
1852
+ </tr>
1853
+ </table>
1854
+ </td>
1855
+ </tr>
1856
+ </table>
1857
+ </td>
1858
+ </tr>
1859
+ </table>
1860
+ </td>
1861
+ </tr>
1862
+ <tr>
1863
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1864
+ </td>
1865
+ <td width="5"></td>
1866
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 4 Dilution" href="http://www.apotheke-online-internet.de/a/ac/p4243030_actaea-spicata-d-4-dilution.html">ACTAEA SPICATA D 4 Dilution</a></h2></td>
1867
+ </tr>
1868
+ <tr>
1869
+ <td></td>
1870
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1871
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1872
+ <tr>
1873
+ <td align="right" class="main2">
1874
+ <strong> 7,46 EUR </strong><br />
1875
+ </td>
1876
+ </tr>
1877
+ <tr>
1878
+ <td align="right" class="main">
1879
+ 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>
1880
+ </td>
1881
+ </tr>
1882
+ </table>
1883
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1884
+ <tr height="15">
1885
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1886
+ </td>
1887
+ <td align="left" valign="top" height="15">
1888
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1889
+ Rezeptfrei</font> </font></a>
1890
+ </td>
1891
+ </tr>
1892
+ <tr height="15">
1893
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1894
+ </td>
1895
+ <td align="left" valign="top" height="15" class="productinfosmall">
1896
+ 20 ml Dilution
1897
+ </td>
1898
+ </tr>
1899
+ <tr height="15">
1900
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1901
+ </td>
1902
+ <td align="left" valign="top" height="15" class="productinfosmall">
1903
+ <a class="liste" title="ACTAEA SPICATA D 4 Dilution von DHU-ARZNEIMITTEL" href="advanced_search_result.php?keywords=DHU-ARZNEIMITTEL">DHU-ARZNEIMITTEL</a>
1904
+ </td>
1905
+ </tr>
1906
+ </table>
1907
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1908
+ <tr>
1909
+ <td>
1910
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1911
+ <tr>
1912
+ <td>
1913
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1914
+ <tr>
1915
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1916
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1917
+ <td valign="left" class="main" width="200">Sofort</td>
1918
+ </tr>
1919
+ </table>
1920
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1921
+ <tr>
1922
+ <td><div align="right">
1923
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4243030/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 4 Dilution' bestellen" title=" 1 x 'ACTAEA SPICATA D 4 Dilution' bestellen " /></a>
1924
+ </div>
1925
+ </td>
1926
+ </tr>
1927
+ </table>
1928
+ </td>
1929
+ </tr>
1930
+ </table>
1931
+ </td>
1932
+ </tr>
1933
+ </table>
1934
+ </td>
1935
+ </tr>
1936
+ <tr>
1937
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1938
+ </td>
1939
+ <td width="5"></td>
1940
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 4 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p7157437_actaea-spicata-d-4-tabletten.html">ACTAEA SPICATA D 4 Tabletten</a></h2></td>
1941
+ </tr>
1942
+ <tr>
1943
+ <td></td>
1944
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1945
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1946
+ <tr>
1947
+ <td align="right" class="main2">
1948
+ <strong> 7,46 EUR </strong><br />
1949
+ </td>
1950
+ </tr>
1951
+ <tr>
1952
+ <td align="right" class="main">
1953
+ 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>
1954
+ </td>
1955
+ </tr>
1956
+ </table>
1957
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1958
+ <tr height="15">
1959
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1960
+ </td>
1961
+ <td align="left" valign="top" height="15">
1962
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1963
+ Rezeptfrei</font> </font></a>
1964
+ </td>
1965
+ </tr>
1966
+ <tr height="15">
1967
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1968
+ </td>
1969
+ <td align="left" valign="top" height="15" class="productinfosmall">
1970
+ 80 St Tabletten
1971
+ </td>
1972
+ </tr>
1973
+ <tr height="15">
1974
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1975
+ </td>
1976
+ <td align="left" valign="top" height="15" class="productinfosmall">
1977
+ <a class="liste" title="ACTAEA SPICATA D 4 Tabletten von DHU-ARZNEIMITTEL" href="advanced_search_result.php?keywords=DHU-ARZNEIMITTEL">DHU-ARZNEIMITTEL</a>
1978
+ </td>
1979
+ </tr>
1980
+ </table>
1981
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1982
+ <tr>
1983
+ <td>
1984
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1985
+ <tr>
1986
+ <td>
1987
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1988
+ <tr>
1989
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1990
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
1991
+ <td valign="left" class="main" width="200">Sofort</td>
1992
+ </tr>
1993
+ </table>
1994
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1995
+ <tr>
1996
+ <td><div align="right">
1997
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7157437/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 4 Tabletten' bestellen" title=" 1 x 'ACTAEA SPICATA D 4 Tabletten' bestellen " /></a>
1998
+ </div>
1999
+ </td>
2000
+ </tr>
2001
+ </table>
2002
+ </td>
2003
+ </tr>
2004
+ </table>
2005
+ </td>
2006
+ </tr>
2007
+ </table>
2008
+ </td>
2009
+ </tr>
2010
+ <tr>
2011
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2012
+ </td>
2013
+ <td width="5"></td>
2014
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 4 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p7594327_actaea-spicata-d-4-tabletten.html">ACTAEA SPICATA D 4 Tabletten</a></h2></td>
2015
+ </tr>
2016
+ <tr>
2017
+ <td></td>
2018
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2019
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2020
+ <tr>
2021
+ <td align="right" class="main2">
2022
+ <strong> 12,55 EUR </strong><br />
2023
+ </td>
2024
+ </tr>
2025
+ <tr>
2026
+ <td align="right" class="main">
2027
+ 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>
2028
+ </td>
2029
+ </tr>
2030
+ </table>
2031
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2032
+ <tr height="15">
2033
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2034
+ </td>
2035
+ <td align="left" valign="top" height="15">
2036
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2037
+ Rezeptfrei</font> </font></a>
2038
+ </td>
2039
+ </tr>
2040
+ <tr height="15">
2041
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2042
+ </td>
2043
+ <td align="left" valign="top" height="15" class="productinfosmall">
2044
+ 200 St Tabletten
2045
+ </td>
2046
+ </tr>
2047
+ <tr height="15">
2048
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2049
+ </td>
2050
+ <td align="left" valign="top" height="15" class="productinfosmall">
2051
+ <a class="liste" title="ACTAEA SPICATA D 4 Tabletten von DHU-ARZNEIMITTEL" href="advanced_search_result.php?keywords=DHU-ARZNEIMITTEL">DHU-ARZNEIMITTEL</a>
2052
+ </td>
2053
+ </tr>
2054
+ </table>
2055
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2056
+ <tr>
2057
+ <td>
2058
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2059
+ <tr>
2060
+ <td>
2061
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2062
+ <tr>
2063
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2064
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
2065
+ <td valign="left" class="main" width="200">Sofort</td>
2066
+ </tr>
2067
+ </table>
2068
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2069
+ <tr>
2070
+ <td><div align="right">
2071
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7594327/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 4 Tabletten' bestellen" title=" 1 x 'ACTAEA SPICATA D 4 Tabletten' bestellen " /></a>
2072
+ </div>
2073
+ </td>
2074
+ </tr>
2075
+ </table>
2076
+ </td>
2077
+ </tr>
2078
+ </table>
2079
+ </td>
2080
+ </tr>
2081
+ </table>
2082
+ </td>
2083
+ </tr>
2084
+ <tr>
2085
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2086
+ </td>
2087
+ <td width="5"></td>
2088
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 6 Dilution" href="http://www.apotheke-online-internet.de/a/ac/p929078_actaea-spicata-d-6-dilution.html">ACTAEA SPICATA D 6 Dilution</a></h2></td>
2089
+ </tr>
2090
+ <tr>
2091
+ <td></td>
2092
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2093
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2094
+ <tr>
2095
+ <td align="right" class="main2">
2096
+ <strong> 3,91 EUR </strong><br />
2097
+ </td>
2098
+ </tr>
2099
+ <tr>
2100
+ <td align="right" class="main">
2101
+ 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>
2102
+ </td>
2103
+ </tr>
2104
+ </table>
2105
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2106
+ <tr height="15">
2107
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2108
+ </td>
2109
+ <td align="left" valign="top" height="15">
2110
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2111
+ Rezeptfrei</font> </font></a>
2112
+ </td>
2113
+ </tr>
2114
+ <tr height="15">
2115
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2116
+ </td>
2117
+ <td align="left" valign="top" height="15" class="productinfosmall">
2118
+ 10 ml Dilution
2119
+ </td>
2120
+ </tr>
2121
+ <tr height="15">
2122
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2123
+ </td>
2124
+ <td align="left" valign="top" height="15" class="productinfosmall">
2125
+ <a class="liste" title="ACTAEA SPICATA D 6 Dilution von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
2126
+ </td>
2127
+ </tr>
2128
+ </table>
2129
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2130
+ <tr>
2131
+ <td>
2132
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2133
+ <tr>
2134
+ <td>
2135
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2136
+ <tr>
2137
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2138
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2139
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2140
+ </tr>
2141
+ </table>
2142
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2143
+ <tr>
2144
+ <td><div align="right">
2145
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/929078/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 6 Dilution' bestellen" title=" 1 x 'ACTAEA SPICATA D 6 Dilution' bestellen " /></a>
2146
+ </div>
2147
+ </td>
2148
+ </tr>
2149
+ </table>
2150
+ </td>
2151
+ </tr>
2152
+ </table>
2153
+ </td>
2154
+ </tr>
2155
+ </table>
2156
+ </td>
2157
+ </tr>
2158
+ <tr>
2159
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2160
+ </td>
2161
+ <td width="5"></td>
2162
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 6 Dilution" href="http://www.apotheke-online-internet.de/a/ac/p7157420_actaea-spicata-d-6-dilution.html">ACTAEA SPICATA D 6 Dilution</a></h2></td>
2163
+ </tr>
2164
+ <tr>
2165
+ <td></td>
2166
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2167
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2168
+ <tr>
2169
+ <td align="right" class="main2">
2170
+ <strong> 7,46 EUR </strong><br />
2171
+ </td>
2172
+ </tr>
2173
+ <tr>
2174
+ <td align="right" class="main">
2175
+ 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>
2176
+ </td>
2177
+ </tr>
2178
+ </table>
2179
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2180
+ <tr height="15">
2181
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2182
+ </td>
2183
+ <td align="left" valign="top" height="15">
2184
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2185
+ Rezeptfrei</font> </font></a>
2186
+ </td>
2187
+ </tr>
2188
+ <tr height="15">
2189
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2190
+ </td>
2191
+ <td align="left" valign="top" height="15" class="productinfosmall">
2192
+ 20 ml Dilution
2193
+ </td>
2194
+ </tr>
2195
+ <tr height="15">
2196
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2197
+ </td>
2198
+ <td align="left" valign="top" height="15" class="productinfosmall">
2199
+ <a class="liste" title="ACTAEA SPICATA D 6 Dilution von DHU-ARZNEIMITTEL" href="advanced_search_result.php?keywords=DHU-ARZNEIMITTEL">DHU-ARZNEIMITTEL</a>
2200
+ </td>
2201
+ </tr>
2202
+ </table>
2203
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2204
+ <tr>
2205
+ <td>
2206
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2207
+ <tr>
2208
+ <td>
2209
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2210
+ <tr>
2211
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2212
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2213
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2214
+ </tr>
2215
+ </table>
2216
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2217
+ <tr>
2218
+ <td><div align="right">
2219
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7157420/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 6 Dilution' bestellen" title=" 1 x 'ACTAEA SPICATA D 6 Dilution' bestellen " /></a>
2220
+ </div>
2221
+ </td>
2222
+ </tr>
2223
+ </table>
2224
+ </td>
2225
+ </tr>
2226
+ </table>
2227
+ </td>
2228
+ </tr>
2229
+ </table>
2230
+ </td>
2231
+ </tr>
2232
+ <tr>
2233
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2234
+ </td>
2235
+ <td width="5"></td>
2236
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 6 Globuli" href="http://www.apotheke-online-internet.de/a/ac/p7454135_actaea-spicata-d-6-globuli.html">ACTAEA SPICATA D 6 Globuli</a></h2></td>
2237
+ </tr>
2238
+ <tr>
2239
+ <td></td>
2240
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2241
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2242
+ <tr>
2243
+ <td align="right" class="main2">
2244
+ <strong> 6,27 EUR </strong><br />
2245
+ </td>
2246
+ </tr>
2247
+ <tr>
2248
+ <td align="right" class="main">
2249
+ 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>
2250
+ </td>
2251
+ </tr>
2252
+ </table>
2253
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2254
+ <tr height="15">
2255
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2256
+ </td>
2257
+ <td align="left" valign="top" height="15">
2258
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2259
+ Rezeptfrei</font> </font></a>
2260
+ </td>
2261
+ </tr>
2262
+ <tr height="15">
2263
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2264
+ </td>
2265
+ <td align="left" valign="top" height="15" class="productinfosmall">
2266
+ 10 g Globuli
2267
+ </td>
2268
+ </tr>
2269
+ <tr height="15">
2270
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2271
+ </td>
2272
+ <td align="left" valign="top" height="15" class="productinfosmall">
2273
+ <a class="liste" title="ACTAEA SPICATA D 6 Globuli von DHU-ARZNEIMITTEL" href="advanced_search_result.php?keywords=DHU-ARZNEIMITTEL">DHU-ARZNEIMITTEL</a>
2274
+ </td>
2275
+ </tr>
2276
+ </table>
2277
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2278
+ <tr>
2279
+ <td>
2280
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2281
+ <tr>
2282
+ <td>
2283
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2284
+ <tr>
2285
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2286
+ <td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
2287
+ <td valign="left" class="main" width="200">Sofort</td>
2288
+ </tr>
2289
+ </table>
2290
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2291
+ <tr>
2292
+ <td><div align="right">
2293
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7454135/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 6 Globuli' bestellen" title=" 1 x 'ACTAEA SPICATA D 6 Globuli' bestellen " /></a>
2294
+ </div>
2295
+ </td>
2296
+ </tr>
2297
+ </table>
2298
+ </td>
2299
+ </tr>
2300
+ </table>
2301
+ </td>
2302
+ </tr>
2303
+ </table>
2304
+ </td>
2305
+ </tr>
2306
+ <tr>
2307
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2308
+ </td>
2309
+ <td width="5"></td>
2310
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA D 6 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p2624348_actaea-spicata-d-6-tabletten.html">ACTAEA SPICATA D 6 Tabletten</a></h2></td>
2311
+ </tr>
2312
+ <tr>
2313
+ <td></td>
2314
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2315
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2316
+ <tr>
2317
+ <td align="right" class="main2">
2318
+ <strong> 7,46 EUR </strong><br />
2319
+ </td>
2320
+ </tr>
2321
+ <tr>
2322
+ <td align="right" class="main">
2323
+ 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>
2324
+ </td>
2325
+ </tr>
2326
+ </table>
2327
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2328
+ <tr height="15">
2329
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2330
+ </td>
2331
+ <td align="left" valign="top" height="15">
2332
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2333
+ Rezeptfrei</font> </font></a>
2334
+ </td>
2335
+ </tr>
2336
+ <tr height="15">
2337
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2338
+ </td>
2339
+ <td align="left" valign="top" height="15" class="productinfosmall">
2340
+ 80 St Tabletten
2341
+ </td>
2342
+ </tr>
2343
+ <tr height="15">
2344
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2345
+ </td>
2346
+ <td align="left" valign="top" height="15" class="productinfosmall">
2347
+ <a class="liste" title="ACTAEA SPICATA D 6 Tabletten von DHU-ARZNEIMITTEL" href="advanced_search_result.php?keywords=DHU-ARZNEIMITTEL">DHU-ARZNEIMITTEL</a>
2348
+ </td>
2349
+ </tr>
2350
+ </table>
2351
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2352
+ <tr>
2353
+ <td>
2354
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2355
+ <tr>
2356
+ <td>
2357
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2358
+ <tr>
2359
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2360
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2361
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2362
+ </tr>
2363
+ </table>
2364
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2365
+ <tr>
2366
+ <td><div align="right">
2367
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/2624348/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA D 6 Tabletten' bestellen" title=" 1 x 'ACTAEA SPICATA D 6 Tabletten' bestellen " /></a>
2368
+ </div>
2369
+ </td>
2370
+ </tr>
2371
+ </table>
2372
+ </td>
2373
+ </tr>
2374
+ </table>
2375
+ </td>
2376
+ </tr>
2377
+ </table>
2378
+ </td>
2379
+ </tr>
2380
+ <tr>
2381
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2382
+ </td>
2383
+ <td width="5"></td>
2384
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA spag. Dilution" href="http://www.apotheke-online-internet.de/a/ac/p4613254_actaea-spicata-spag--dilution.html">ACTAEA SPICATA spag. Dilution</a></h2></td>
2385
+ </tr>
2386
+ <tr>
2387
+ <td></td>
2388
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2389
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2390
+ <tr>
2391
+ <td align="right" class="main2">
2392
+ <strong> 12,51 EUR </strong><br />
2393
+ </td>
2394
+ </tr>
2395
+ <tr>
2396
+ <td align="right" class="main">
2397
+ 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>
2398
+ </td>
2399
+ </tr>
2400
+ </table>
2401
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2402
+ <tr height="15">
2403
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2404
+ </td>
2405
+ <td align="left" valign="top" height="15">
2406
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2407
+ Rezeptfrei</font> </font></a>
2408
+ </td>
2409
+ </tr>
2410
+ <tr height="15">
2411
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2412
+ </td>
2413
+ <td align="left" valign="top" height="15" class="productinfosmall">
2414
+ 30 ml Dilution
2415
+ </td>
2416
+ </tr>
2417
+ <tr height="15">
2418
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2419
+ </td>
2420
+ <td align="left" valign="top" height="15" class="productinfosmall">
2421
+ <a class="liste" title="ACTAEA SPICATA spag. Dilution von SPAGYROS GMBH" href="advanced_search_result.php?keywords=SPAGYROS GMBH">SPAGYROS GMBH</a>
2422
+ </td>
2423
+ </tr>
2424
+ </table>
2425
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2426
+ <tr>
2427
+ <td>
2428
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2429
+ <tr>
2430
+ <td>
2431
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2432
+ <tr>
2433
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2434
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2435
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2436
+ </tr>
2437
+ </table>
2438
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2439
+ <tr>
2440
+ <td><div align="right">
2441
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4613254/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA spag. Dilution' bestellen" title=" 1 x 'ACTAEA SPICATA spag. Dilution' bestellen " /></a>
2442
+ </div>
2443
+ </td>
2444
+ </tr>
2445
+ </table>
2446
+ </td>
2447
+ </tr>
2448
+ </table>
2449
+ </td>
2450
+ </tr>
2451
+ </table>
2452
+ </td>
2453
+ </tr>
2454
+ <tr>
2455
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2456
+ </td>
2457
+ <td width="5"></td>
2458
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA Urtinktur" href="http://www.apotheke-online-internet.de/a/ac/p929546_actaea-spicata-urtinktur.html">ACTAEA SPICATA Urtinktur</a></h2></td>
2459
+ </tr>
2460
+ <tr>
2461
+ <td></td>
2462
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2463
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2464
+ <tr>
2465
+ <td align="right" class="main2">
2466
+ <strong> 12,57 EUR </strong><br />
2467
+ </td>
2468
+ </tr>
2469
+ <tr>
2470
+ <td align="right" class="main">
2471
+ 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>
2472
+ </td>
2473
+ </tr>
2474
+ </table>
2475
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2476
+ <tr height="15">
2477
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2478
+ </td>
2479
+ <td align="left" valign="top" height="15">
2480
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
2481
+ <a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
2482
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b>&nbsp;&nbsp;Info!</b>
2483
+ </font></a>
2484
+ </td>
2485
+ </tr>
2486
+ <tr height="15">
2487
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2488
+ </td>
2489
+ <td align="left" valign="top" height="15" class="productinfosmall">
2490
+ 10 ml Dilution
2491
+ </td>
2492
+ </tr>
2493
+ <tr height="15">
2494
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2495
+ </td>
2496
+ <td align="left" valign="top" height="15" class="productinfosmall">
2497
+ <a class="liste" title="ACTAEA SPICATA Urtinktur von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
2498
+ </td>
2499
+ </tr>
2500
+ </table>
2501
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2502
+ <tr>
2503
+ <td>
2504
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2505
+ <tr>
2506
+ <td>
2507
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2508
+ <tr>
2509
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2510
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2511
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2512
+ </tr>
2513
+ </table>
2514
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2515
+ <tr>
2516
+ <td><div align="right">
2517
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/929546/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA Urtinktur' bestellen" title=" 1 x 'ACTAEA SPICATA Urtinktur' bestellen " /></a>
2518
+ </div>
2519
+ </td>
2520
+ </tr>
2521
+ </table>
2522
+ </td>
2523
+ </tr>
2524
+ </table>
2525
+ </td>
2526
+ </tr>
2527
+ </table>
2528
+ </td>
2529
+ </tr>
2530
+ <tr>
2531
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2532
+ </td>
2533
+ <td width="5"></td>
2534
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA Urtinktur" href="http://www.apotheke-online-internet.de/a/ac/p929569_actaea-spicata-urtinktur.html">ACTAEA SPICATA Urtinktur</a></h2></td>
2535
+ </tr>
2536
+ <tr>
2537
+ <td></td>
2538
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2539
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2540
+ <tr>
2541
+ <td align="right" class="main2">
2542
+ <strong> 15,27 EUR </strong><br />
2543
+ </td>
2544
+ </tr>
2545
+ <tr>
2546
+ <td align="right" class="main">
2547
+ 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>
2548
+ </td>
2549
+ </tr>
2550
+ </table>
2551
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2552
+ <tr height="15">
2553
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2554
+ </td>
2555
+ <td align="left" valign="top" height="15">
2556
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
2557
+ <a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
2558
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b>&nbsp;&nbsp;Info!</b>
2559
+ </font></a>
2560
+ </td>
2561
+ </tr>
2562
+ <tr height="15">
2563
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2564
+ </td>
2565
+ <td align="left" valign="top" height="15" class="productinfosmall">
2566
+ 20 ml Dilution
2567
+ </td>
2568
+ </tr>
2569
+ <tr height="15">
2570
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2571
+ </td>
2572
+ <td align="left" valign="top" height="15" class="productinfosmall">
2573
+ <a class="liste" title="ACTAEA SPICATA Urtinktur von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
2574
+ </td>
2575
+ </tr>
2576
+ </table>
2577
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2578
+ <tr>
2579
+ <td>
2580
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2581
+ <tr>
2582
+ <td>
2583
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2584
+ <tr>
2585
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2586
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2587
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2588
+ </tr>
2589
+ </table>
2590
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2591
+ <tr>
2592
+ <td><div align="right">
2593
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/929569/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA Urtinktur' bestellen" title=" 1 x 'ACTAEA SPICATA Urtinktur' bestellen " /></a>
2594
+ </div>
2595
+ </td>
2596
+ </tr>
2597
+ </table>
2598
+ </td>
2599
+ </tr>
2600
+ </table>
2601
+ </td>
2602
+ </tr>
2603
+ </table>
2604
+ </td>
2605
+ </tr>
2606
+ <tr>
2607
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2608
+ </td>
2609
+ <td width="5"></td>
2610
+ <td align="left"><h2><a title="Weitere Informationen zu ACTAEA SPICATA Urtinktur" href="http://www.apotheke-online-internet.de/a/ac/p929635_actaea-spicata-urtinktur.html">ACTAEA SPICATA Urtinktur</a></h2></td>
2611
+ </tr>
2612
+ <tr>
2613
+ <td></td>
2614
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2615
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2616
+ <tr>
2617
+ <td align="right" class="main2">
2618
+ <strong> 19,85 EUR </strong><br />
2619
+ </td>
2620
+ </tr>
2621
+ <tr>
2622
+ <td align="right" class="main">
2623
+ 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>
2624
+ </td>
2625
+ </tr>
2626
+ </table>
2627
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2628
+ <tr height="15">
2629
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2630
+ </td>
2631
+ <td align="left" valign="top" height="15">
2632
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
2633
+ <a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
2634
+ <font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b>&nbsp;&nbsp;Info!</b>
2635
+ </font></a>
2636
+ </td>
2637
+ </tr>
2638
+ <tr height="15">
2639
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2640
+ </td>
2641
+ <td align="left" valign="top" height="15" class="productinfosmall">
2642
+ 50 ml Dilution
2643
+ </td>
2644
+ </tr>
2645
+ <tr height="15">
2646
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2647
+ </td>
2648
+ <td align="left" valign="top" height="15" class="productinfosmall">
2649
+ <a class="liste" title="ACTAEA SPICATA Urtinktur von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
2650
+ </td>
2651
+ </tr>
2652
+ </table>
2653
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2654
+ <tr>
2655
+ <td>
2656
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2657
+ <tr>
2658
+ <td>
2659
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2660
+ <tr>
2661
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2662
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2663
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2664
+ </tr>
2665
+ </table>
2666
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2667
+ <tr>
2668
+ <td><div align="right">
2669
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/929635/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTAEA SPICATA Urtinktur' bestellen" title=" 1 x 'ACTAEA SPICATA Urtinktur' bestellen " /></a>
2670
+ </div>
2671
+ </td>
2672
+ </tr>
2673
+ </table>
2674
+ </td>
2675
+ </tr>
2676
+ </table>
2677
+ </td>
2678
+ </tr>
2679
+ </table>
2680
+ </td>
2681
+ </tr>
2682
+ <tr>
2683
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2684
+ </td>
2685
+ <td width="5"></td>
2686
+ <td align="left"><h2><a title="Weitere Informationen zu ACTH C 6 Dilution" href="http://www.apotheke-online-internet.de/a/ac/p929658_acth-c-6-dilution.html">ACTH C 6 Dilution</a></h2></td>
2687
+ </tr>
2688
+ <tr>
2689
+ <td></td>
2690
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2691
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2692
+ <tr>
2693
+ <td align="right" class="main2">
2694
+ <strong> 3,91 EUR </strong><br />
2695
+ </td>
2696
+ </tr>
2697
+ <tr>
2698
+ <td align="right" class="main">
2699
+ 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>
2700
+ </td>
2701
+ </tr>
2702
+ </table>
2703
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2704
+ <tr height="15">
2705
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2706
+ </td>
2707
+ <td align="left" valign="top" height="15">
2708
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2709
+ Rezeptfrei</font> </font></a>
2710
+ </td>
2711
+ </tr>
2712
+ <tr height="15">
2713
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2714
+ </td>
2715
+ <td align="left" valign="top" height="15" class="productinfosmall">
2716
+ 10 ml Dilution
2717
+ </td>
2718
+ </tr>
2719
+ <tr height="15">
2720
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2721
+ </td>
2722
+ <td align="left" valign="top" height="15" class="productinfosmall">
2723
+ <a class="liste" title="ACTH C 6 Dilution von ARCHEA-PHARMA GMBH" href="advanced_search_result.php?keywords=ARCHEA-PHARMA GMBH">ARCHEA-PHARMA GMBH</a>
2724
+ </td>
2725
+ </tr>
2726
+ </table>
2727
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2728
+ <tr>
2729
+ <td>
2730
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2731
+ <tr>
2732
+ <td>
2733
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2734
+ <tr>
2735
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2736
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2737
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2738
+ </tr>
2739
+ </table>
2740
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2741
+ <tr>
2742
+ <td><div align="right">
2743
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/929658/cat/4002/category/AC/page/64"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACTH C 6 Dilution' bestellen" title=" 1 x 'ACTH C 6 Dilution' bestellen " /></a>
2744
+ </div>
2745
+ </td>
2746
+ </tr>
2747
+ </table>
2748
+ </td>
2749
+ </tr>
2750
+ </table>
2751
+ </td>
2752
+ </tr>
2753
+ </table>
2754
+ </td>
2755
+ </tr>
2756
+ </table>
2757
+ </td>
2758
+ </tr>
2759
+ </table>
2760
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
2761
+ <tr valign="top">
2762
+ <td class="main"><p>Artikel Verzeichnis alphabetisch AC</p>
2763
+ <p>Unsere Kunden suchen h&auml;ufig:</p>
2764
+ <p>ACALYPHA Acarosan </p></td>
2765
+ <td align="right">&nbsp;</td>
2766
+ </tr>
2767
+ </table>
2768
+ <table width="100%" border="0">
2769
+ <tr>
2770
+ <td align="left">
2771
+ <!--
2772
+ * Social Bookmark Script
2773
+ * @ Version 1.5
2774
+ * @ Copyright (C) 2006 by Alexander Hadj Hassine - All rights reserved
2775
+ * @ Website http://www.social-bookmark-script.de/
2776
+ * @
2777
+ * @ Bei Nutzung des Scripts muessen alle unsere Copyright-Hinweise und Links in dem Script selbst,
2778
+ * @ sowie in der Anzeige/Ausgabe unveraendert bleiben!
2779
+ * @
2780
+ * @ D.h., sie duerfen nicht entfernt, umgewandelt, versteckt oder unsichtbar gemacht werden,
2781
+ * @ es sei den Sie verlinken http://www.social-bookmark-script.de/ mindestens 1 mal
2782
+ * @ "suchmaschinenfreundlich" von Ihrer Startseite!
2783
+ -->
2784
+ <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>
2785
+ <div style="border-top-style:solid; padding-top:3px; border-top-width: 1px; border-top-color: #2A4956; float: center;">
2786
+ <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>
2787
+ <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>
2788
+ <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>
2789
+ <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>
2790
+ <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>
2791
+ <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>
2792
+ <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>
2793
+ <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>
2794
+ <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>
2795
+ <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>
2796
+ <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>
2797
+ <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>
2798
+ <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>
2799
+ <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>
2800
+ <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>
2801
+ <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>
2802
+ <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>
2803
+ <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>
2804
+ </div>
2805
+ </td>
2806
+ </tr>
2807
+ </table>
2808
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
2809
+ <tr height="10">
2810
+ <td align="center" valign="middle" height="20"><font size="1" face="verdana">Abbildungen k&ouml;nnen von Originalprodukten abweichen</font></td>
2811
+ </tr>
2812
+ <tr>
2813
+ <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>
2814
+ </tr>
2815
+ <tr>
2816
+ <td>
2817
+ <table border="0" width="100%" cellspacing="0" cellpadding="2">
2818
+ <tr>
2819
+ <td class="smallText">Zeige <b>1891</b> bis <b>1920</b> (von insgesamt <b>2285</b> Artikeln)</td>
2820
+ </tr>
2821
+ <tr>
2822
+ <td class="smallText" align="left">Seiten: <a href="http://www.apotheke-online-internet.de/a/ac-page-63.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;<b>64</b>&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;<a href="http://www.apotheke-online-internet.de/a/ac-page-67.html" class="pageResults" title=" Seite 67 ">67</a>&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-65.html" class="pageResults" title=" n&auml;chste Seite ">[n&auml;chste&nbsp;&gt;&gt;]</a>&nbsp;</td>
2823
+ </tr>
2824
+ </table></td>
2825
+ </tr>
2826
+
2827
+ </table>
2828
+ </div>
2829
+ </div>
2830
+ <div style="width:800px;margin:0px auto;clear: both;">
2831
+ <div align="center" class="ifooter">
2832
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center">
2833
+ <tr>
2834
+ <td align="center" valign="top">
2835
+ <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>
2836
+ <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>
2837
+ <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>
2838
+ <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>
2839
+ <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>
2840
+ <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>
2841
+ <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>
2842
+ <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>
2843
+ <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>
2844
+ <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>
2845
+ <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>
2846
+ <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>
2847
+ <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>
2848
+ <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>
2849
+ <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>
2850
+ <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>
2851
+ <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>
2852
+ <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>
2853
+ <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>
2854
+ <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>
2855
+ <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>
2856
+ <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>
2857
+ <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>
2858
+ </td>
2859
+ </tr>
2860
+ </table>
2861
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2862
+ <td align="center" valign="top">
2863
+
2864
+
2865
+ <table width="100%" border="0" cellpadding="2" cellspacing="0">
2866
+ <tr>
2867
+ <td class="infoBoxHeading_cloud">
2868
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2869
+ <tr>
2870
+ <td align="left" class="infoBoxHeadingTitle">Unsere Kunden suchen</td>
2871
+ </tr>
2872
+ </table>
2873
+ </td>
2874
+ </tr>
2875
+ <tr>
2876
+ <td class="infoBoxHeading_cloud" align="left">
2877
+ <table width="95%" border="0" cellpadding="2" cellspacing="0">
2878
+ <tr>
2879
+ <td class="boxText">
2880
+ <table border="0" width="100%" cellspacing="0" cellpadding="0">
2881
+ <tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
2882
+ <tr>
2883
+ <td align="center" class="boxText">
2884
+ <a title="Agnus sanol" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Agnus+sanol" style="font-size:14px; font-weight:500; color:#B69724;">Agnus sanol</a>&nbsp;
2885
+ <a title="Asche Basis creme" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Asche+Basis+creme" style="font-size:9px; font-weight:100; color:#9A9893;">Asche Basis creme</a>&nbsp;
2886
+ <a title="Babypuder" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Babypuder" style="font-size:9px; font-weight:100; color:#999999;">Babypuder</a>&nbsp;
2887
+ <a title="Bachblueten" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Bachblueten" style="font-size:10px; font-weight:200; color:#9F987D;">Bachblueten</a>&nbsp;
2888
+ <a title="Boxacin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Boxacin" style="font-size:15px; font-weight:500; color:#BA9715;">Boxacin</a>&nbsp;
2889
+ <a title="Canesten Extra" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Canesten+Extra" style="font-size:12px; font-weight:300; color:#A7985D;">Canesten Extra</a>&nbsp;
2890
+ <a title="Carbaglu" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Carbaglu" style="font-size:13px; font-weight:300; color:#AC9749;">Carbaglu</a>&nbsp;
2891
+ <a title="Cetebe" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Cetebe" style="font-size:14px; font-weight:400; color:#B59725;">Cetebe</a>&nbsp;
2892
+ <a title="Esprico" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Esprico" style="font-size:13px; font-weight:400; color:#AE9742;">Esprico</a>&nbsp;
2893
+ <a title="Fuculacca" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Fuculacca" style="font-size:14px; font-weight:400; color:#B3972D;">Fuculacca</a>&nbsp;
2894
+ <a title="Hanonephrin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Hanonephrin" style="font-size:12px; font-weight:300; color:#AA9751;">Hanonephrin</a>&nbsp;
2895
+ <a title="Hansaplast Narben" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Hansaplast+Narben" style="font-size:12px; font-weight:300; color:#AB974D;">Hansaplast Narben</a>&nbsp;
2896
+ <a title="Heparin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Heparin" style="font-size:14px; font-weight:400; color:#B59726;">Heparin</a>&nbsp;
2897
+ <a title="Inneov sonne" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Inneov+sonne" style="font-size:14px; font-weight:400; color:#B3972D;">Inneov sonne</a>&nbsp;
2898
+ <a title="Odaban" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Odaban" style="font-size:11px; font-weight:200; color:#A3986F;">Odaban</a>&nbsp;
2899
+ <a title="Pagasling" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Pagasling" style="font-size:15px; font-weight:500; color:#B8971A;">Pagasling</a>&nbsp;
2900
+ <a title="Progestogel" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Progestogel" style="font-size:14px; font-weight:500; color:#B69722;">Progestogel</a>&nbsp;
2901
+ <a title="Ricola" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Ricola" style="font-size:14px; font-weight:400; color:#B4972C;">Ricola</a>&nbsp;
2902
+ <a title="Rubriment" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Rubriment" style="font-size:15px; font-weight:500; color:#B89719;">Rubriment</a>&nbsp;
2903
+ <a title="Schnupfen Endrine" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Schnupfen+Endrine" style="font-size:14px; font-weight:500; color:#B69724;">Schnupfen Endrine</a>&nbsp;
2904
+ <a title="Speick" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Speick" style="font-size:14px; font-weight:400; color:#B29734;">Speick</a>&nbsp;
2905
+ <a title="Tonikum" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Tonikum" style="font-size:14px; font-weight:400; color:#B3972E;">Tonikum</a>&nbsp;
2906
+ <a title="Wala passiflora" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Wala+passiflora" style="font-size:14px; font-weight:400; color:#B4972A;">Wala passiflora</a>&nbsp;
2907
+ <a title="Waschlotion" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Waschlotion" style="font-size:9px; font-weight:100; color:#9A9893;">Waschlotion</a>&nbsp;
2908
+ <a title="coralcare" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=coralcare" style="font-size:12px; font-weight:300; color:#A7985E;">coralcare</a>&nbsp;
2909
+ <a title="mycospor nagelset" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=mycospor+nagelset" style="font-size:12px; font-weight:300; color:#A99756;">mycospor nagelset</a>&nbsp;
2910
+ <a title="paracetamol" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=paracetamol" style="font-size:14px; font-weight:500; color:#B69722;">paracetamol</a>&nbsp;
2911
+ <a title="paracetamol 250" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=paracetamol+250" style="font-size:11px; font-weight:200; color:#A4986C;">paracetamol 250</a>&nbsp;
2912
+ <a title="paracetamol stada" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=paracetamol+stada" style="font-size:14px; font-weight:400; color:#B59727;">paracetamol stada</a>&nbsp;
2913
+ <a title="weleda heilsalbe" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=weleda+heilsalbe" style="font-size:10px; font-weight:200; color:#9F987D;">weleda heilsalbe</a>&nbsp;
2914
+ </td>
2915
+ </tr>
2916
+ <tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
2917
+ <tr>
2918
+ <td valign="middle" class="boxText">
2919
+ <a href="http://www.suchmaschinenoptimierung-hamburg.de/xtc-modules/german/tag-cloud.html" target="_blank">Was ist es?</a>
2920
+ </td>
2921
+ </tr>
2922
+ </table>
2923
+ </td>
2924
+ </tr>
2925
+ </table>
2926
+ </td>
2927
+ </tr>
2928
+ </table>
2929
+ </td></tr></table>
2930
+ <table width="800" height="5" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2931
+ <td align="center" valign="top"></td></tr></table>
2932
+ <table style="border-top: 2px solid; border-color: #3e7d52;" width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2933
+ <td colspan="5" align="center" valign="top" bgcolor="white" width="800">
2934
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2935
+ <td align="center" valign="top"></td></tr></table>
2936
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><tr>
2937
+ <td colspan="2" align="center" valign="top">
2938
+ <table width="100%" border="0" cellpadding="2" cellspacing="0"><tr>
2939
+ <td class="infoBoxcontent" align="center">
2940
+ <table width="95%" border="0" cellpadding="2" cellspacing="0"><tr>
2941
+ <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>
2942
+ </tr>
2943
+ <tr>
2944
+ <td align="center" valign="top">
2945
+ <a id="link2" href="a.html" target=_top>A</a>
2946
+ <a id="link2" href="b.html" target=_top>B</a>
2947
+ <a id="link2" href="c.html" target=_top>C</a>
2948
+ <a id="link2" href="d.html" target=_top>D</a>
2949
+ <a id="link2" href="e.html" target=_top>E</a>
2950
+ <a id="link2" href="f.html" target=_top>F</a>
2951
+ <a id="link2" href="g.html" target=_top>G</a>
2952
+ <a id="link2" href="h.html" target=_top>H</a>
2953
+ <a id="link2" href="i.html" target=_top>I</a>
2954
+ <a id="link2" href="j.html" target=_top>J</a>
2955
+ <a id="link2" href="k.html" target=_top>K</a>
2956
+ <a id="link2" href="l.html" target=_top>L</a>
2957
+ <a id="link2" href="m.html" target=_top>M</a>
2958
+ <a id="link2" href="n.html" target=_top>N</a>
2959
+ <a id="link2" href="o.html" target=_top>O</a>
2960
+ <a id="link2" href="p.html" target=_top>P</a>
2961
+ <a id="link2" href="q.html" target=_top>Q</a>
2962
+ <a id="link2" href="r.html" target=_top>R</a>
2963
+ <a id="link2" href="s.html" target=_top>S</a>
2964
+ <a id="link2" href="t.html" target=_top>T</a>
2965
+ <a id="link2" href="u.html" target=_top>U</a>
2966
+ <a id="link2" href="v.html" target=_top>V</a>
2967
+ <a id="link2" href="w.html" target=_top>W</a>
2968
+ <a id="link2" href="x.html" target=_top>X</a>
2969
+ <a id="link2" href="y.html" target=_top>Y</a>
2970
+ <a id="link2" href="z.html" target=_top>Z</a>
2971
+ </td></tr>
2972
+ <tr>
2973
+ <td align="center" valign="top">
2974
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-2.html" target=_top>A</a>
2975
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-3.html" target=_top>B</a>
2976
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-4.html" target=_top>C</a>
2977
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-5.html" target=_top>D</a>
2978
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-6.html" target=_top>E</a>
2979
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-7.html" target=_top>F</a>
2980
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-8.html" target=_top>G</a>
2981
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-9.html" target=_top>H</a>
2982
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-10.html" target=_top>I</a>
2983
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-11.html" target=_top>J</a>
2984
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-12.html" target=_top>K</a>
2985
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-13.html" target=_top>L</a>
2986
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-14.html" target=_top>M</a>
2987
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-15.html" target=_top>N</a>
2988
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-16.html" target=_top>O</a>
2989
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-17.html" target=_top>P</a>
2990
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-18.html" target=_top>Q</a>
2991
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-19.html" target=_top>R</a>
2992
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-20.html" target=_top>S</a>
2993
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-21.html" target=_top>T</a>
2994
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-22.html" target=_top>U</a>
2995
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-23.html" target=_top>V</a>
2996
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-24.html" target=_top>W</a>
2997
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-25.html" target=_top>X</a>
2998
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-26.html" target=_top>Y</a>
2999
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-27.html" target=_top>Z</a>
3000
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-28.html" target=_top>0-9</a>
3001
+ </td></tr></table></td></tr></table></td></tr></table>
3002
+ <table style="border-top: 1px solid; border-color: #3e7d52;" width="520" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><br>
3003
+ <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>
3004
+ </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>
3005
+ </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>
3006
+ </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>
3007
+ </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>