de.oddb 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,2999 @@
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 ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage" href="http://www.apotheke-online-internet.de/a/ac/p3633705_accufuser-c0050l-250ml-5-0ml-h-2-tage.html">ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage</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> 895,85 EUR </strong><br />
541
+ </td>
542
+ </tr>
543
+ <tr>
544
+ <td align="right" class="main">
545
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT 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/3633705/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage' bestellen" title=" 1 x 'ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage' 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 ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage" href="http://www.apotheke-online-internet.de/a/ac/p5950255_accufuser-c0050l-250ml-5-0ml-h-2-tage.html">ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage</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> 882,75 EUR </strong><br />
615
+ </td>
616
+ </tr>
617
+ <tr>
618
+ <td align="right" class="main">
619
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON 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/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
657
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</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/5950255/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage' bestellen" title=" 1 x 'ACCUFUSER C0050L 250ml 5,0ml-h 2 Tage' 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 ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag" href="http://www.apotheke-online-internet.de/a/ac/p3636678_accufuser-c0050m-100ml-5-0ml-h-1-tag.html">ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag</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> 895,85 EUR </strong><br />
689
+ </td>
690
+ </tr>
691
+ <tr>
692
+ <td align="right" class="main">
693
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT 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/3636678/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag' bestellen" title=" 1 x 'ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag' 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 ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag 20 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950114_accufuser-c0050m-100ml-5-0ml-h-1-tag-20-std-.html">ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag 20 Std.</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> 870,98 EUR </strong><br />
763
+ </td>
764
+ </tr>
765
+ <tr>
766
+ <td align="right" class="main">
767
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag 20 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON 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/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
805
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</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/5950114/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag 20 Std.' bestellen" title=" 1 x 'ACCUFUSER C0050M 100ml 5,0ml-h 1 Tag 20 Std.' 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 ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage" href="http://www.apotheke-online-internet.de/a/ac/p3636738_accufuser-c0050s-60ml-5-0ml-h-0-5-tage.html">ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage</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> 400,61 EUR </strong><br />
837
+ </td>
838
+ </tr>
839
+ <tr>
840
+ <td align="right" class="main">
841
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT 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/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
879
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</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/3636738/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage' bestellen" title=" 1 x 'ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage' 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 ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage 12 Std." href="http://www.apotheke-online-internet.de/a/ac/p5949973_accufuser-c0050s-60ml-5-0ml-h-0-5-tage-12-std-.html">ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage 12 Std.</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> 376,64 EUR </strong><br />
911
+ </td>
912
+ </tr>
913
+ <tr>
914
+ <td align="right" class="main">
915
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage 12 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON 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/5949973/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage 12 Std.' bestellen" title=" 1 x 'ACCUFUSER C0050S 60ml 5,0ml-h 0,5 Tage 12 Std.' 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 ACCUFUSER C0050S DFO 60ml 0,5ml-h 0,5T.Einm.I.P." href="http://www.apotheke-online-internet.de/a/ac/p4073183_accufuser-c0050s-dfo-60ml-0-5ml-h-0-5t-einm-i-p-.html">ACCUFUSER C0050S DFO 60ml 0,5ml-h 0,5T.Einm.I.P.</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> 1.104,31 EUR </strong><br />
985
+ </td>
986
+ </tr>
987
+ <tr>
988
+ <td align="right" class="main">
989
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0050S DFO 60ml 0,5ml-h 0,5T.Einm.I.P. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT 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/4073183/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0050S DFO 60ml 0,5ml-h 0,5T.Einm.I.P.' bestellen" title=" 1 x 'ACCUFUSER C0050S DFO 60ml 0,5ml-h 0,5T.Einm.I.P.' 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 ACCUFUSER C0050S DFO 60ml 5ml-h 0,5 Tage 12 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950462_accufuser-c0050s-dfo-60ml-5ml-h-0-5-tage-12-std-.html">ACCUFUSER C0050S DFO 60ml 5ml-h 0,5 Tage 12 Std.</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> 376,64 EUR </strong><br />
1059
+ </td>
1060
+ </tr>
1061
+ <tr>
1062
+ <td align="right" class="main">
1063
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0050S DFO 60ml 5ml-h 0,5 Tage 12 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON 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/5950462/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0050S DFO 60ml 5ml-h 0,5 Tage 12 Std.' bestellen" title=" 1 x 'ACCUFUSER C0050S DFO 60ml 5ml-h 0,5 Tage 12 Std.' 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 ACCUFUSER C0080L 250ml 8,0 ml-h 1,3 Tage" href="http://www.apotheke-online-internet.de/a/ac/p3634113_accufuser-c0080l-250ml-8-0-ml-h-1-3-tage.html">ACCUFUSER C0080L 250ml 8,0 ml-h 1,3 Tage</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> 895,85 EUR </strong><br />
1133
+ </td>
1134
+ </tr>
1135
+ <tr>
1136
+ <td align="right" class="main">
1137
+ incl. 7 % 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
+ 10 St
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="ACCUFUSER C0080L 250ml 8,0 ml-h 1,3 Tage von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</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/3634113/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0080L 250ml 8,0 ml-h 1,3 Tage' bestellen" title=" 1 x 'ACCUFUSER C0080L 250ml 8,0 ml-h 1,3 Tage' 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 ACCUFUSER C0080L 250ml 8,0ml-h 1,3 Tage 31 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950261_accufuser-c0080l-250ml-8-0ml-h-1-3-tage-31-std-.html">ACCUFUSER C0080L 250ml 8,0ml-h 1,3 Tage 31 Std.</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> 882,75 EUR </strong><br />
1207
+ </td>
1208
+ </tr>
1209
+ <tr>
1210
+ <td align="right" class="main">
1211
+ incl. 7 % 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 St
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="ACCUFUSER C0080L 250ml 8,0ml-h 1,3 Tage 31 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON GMBH</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/5950261/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0080L 250ml 8,0ml-h 1,3 Tage 31 Std.' bestellen" title=" 1 x 'ACCUFUSER C0080L 250ml 8,0ml-h 1,3 Tage 31 Std.' 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 ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag" href="http://www.apotheke-online-internet.de/a/ac/p3634484_accufuser-c0100l-250ml-10-0ml-h-1-tag.html">ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag</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> 895,85 EUR </strong><br />
1281
+ </td>
1282
+ </tr>
1283
+ <tr>
1284
+ <td align="right" class="main">
1285
+ incl. 7 % 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 St
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="ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT 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/3634484/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag' bestellen" title=" 1 x 'ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag' 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 ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag" href="http://www.apotheke-online-internet.de/a/ac/p5950278_accufuser-c0100l-250ml-10-0ml-h-1-tag.html">ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag</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> 882,75 EUR </strong><br />
1355
+ </td>
1356
+ </tr>
1357
+ <tr>
1358
+ <td align="right" class="main">
1359
+ incl. 7 % 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 St
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="ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON 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/5950278/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag' bestellen" title=" 1 x 'ACCUFUSER C0100L 250ml 10,0ml-h 1 Tag' 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 ACCUFUSER C0130M 100ml 13,0ml-h 7,5 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950143_accufuser-c0130m-100ml-13-0ml-h-7-5-std-.html">ACCUFUSER C0130M 100ml 13,0ml-h 7,5 Std.</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> 1.235,85 EUR </strong><br />
1429
+ </td>
1430
+ </tr>
1431
+ <tr>
1432
+ <td align="right" class="main">
1433
+ incl. 7 % 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 St
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="ACCUFUSER C0130M 100ml 13,0ml-h 7,5 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON 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/5950143/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0130M 100ml 13,0ml-h 7,5 Std.' bestellen" title=" 1 x 'ACCUFUSER C0130M 100ml 13,0ml-h 7,5 Std.' 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 ACCUFUSER C0130M 100ml 13,0ml-h 7,7h" href="http://www.apotheke-online-internet.de/a/ac/p775646_accufuser-c0130m-100ml-13-0ml-h-7-7h.html">ACCUFUSER C0130M 100ml 13,0ml-h 7,7h</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> 1.310,22 EUR </strong><br />
1503
+ </td>
1504
+ </tr>
1505
+ <tr>
1506
+ <td align="right" class="main">
1507
+ incl. 7 % 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" face="Verdana,Geneva,Arial,Sans-serif">
1517
+ Rezeptfrei</font> </font></a>
1518
+ </td>
1519
+ </tr>
1520
+ <tr height="15">
1521
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1522
+ </td>
1523
+ <td align="left" valign="top" height="15" class="productinfosmall">
1524
+ 10 St
1525
+ </td>
1526
+ </tr>
1527
+ <tr height="15">
1528
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1529
+ </td>
1530
+ <td align="left" valign="top" height="15" class="productinfosmall">
1531
+ <a class="liste" title="ACCUFUSER C0130M 100ml 13,0ml-h 7,7h von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
1532
+ </td>
1533
+ </tr>
1534
+ </table>
1535
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1536
+ <tr>
1537
+ <td>
1538
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1539
+ <tr>
1540
+ <td>
1541
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1542
+ <tr>
1543
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1544
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1545
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1546
+ </tr>
1547
+ </table>
1548
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1549
+ <tr>
1550
+ <td><div align="right">
1551
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/775646/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0130M 100ml 13,0ml-h 7,7h' bestellen" title=" 1 x 'ACCUFUSER C0130M 100ml 13,0ml-h 7,7h' bestellen " /></a>
1552
+ </div>
1553
+ </td>
1554
+ </tr>
1555
+ </table>
1556
+ </td>
1557
+ </tr>
1558
+ </table>
1559
+ </td>
1560
+ </tr>
1561
+ </table>
1562
+ </td>
1563
+ </tr>
1564
+ <tr>
1565
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1566
+ </td>
1567
+ <td width="5"></td>
1568
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C0500L 250ml 50ml-h 5 h Einm.Inf.Pump." href="http://www.apotheke-online-internet.de/a/ac/p4073094_accufuser-c0500l-250ml-50ml-h-5-h-einm-inf-pump-.html">ACCUFUSER C0500L 250ml 50ml-h 5 h Einm.Inf.Pump.</a></h2></td>
1569
+ </tr>
1570
+ <tr>
1571
+ <td></td>
1572
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1573
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1574
+ <tr>
1575
+ <td align="right" class="main2">
1576
+ <strong> 388,09 EUR </strong><br />
1577
+ </td>
1578
+ </tr>
1579
+ <tr>
1580
+ <td align="right" class="main">
1581
+ incl. 7 % 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>
1582
+ </td>
1583
+ </tr>
1584
+ </table>
1585
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1586
+ <tr height="15">
1587
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1588
+ </td>
1589
+ <td align="left" valign="top" height="15">
1590
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1591
+ Rezeptfrei</font> </font></a>
1592
+ </td>
1593
+ </tr>
1594
+ <tr height="15">
1595
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1596
+ </td>
1597
+ <td align="left" valign="top" height="15" class="productinfosmall">
1598
+ 10 St
1599
+ </td>
1600
+ </tr>
1601
+ <tr height="15">
1602
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1603
+ </td>
1604
+ <td align="left" valign="top" height="15" class="productinfosmall">
1605
+ <a class="liste" title="ACCUFUSER C0500L 250ml 50ml-h 5 h Einm.Inf.Pump. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
1606
+ </td>
1607
+ </tr>
1608
+ </table>
1609
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1610
+ <tr>
1611
+ <td>
1612
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1613
+ <tr>
1614
+ <td>
1615
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1616
+ <tr>
1617
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1618
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1619
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1620
+ </tr>
1621
+ </table>
1622
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1623
+ <tr>
1624
+ <td><div align="right">
1625
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4073094/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0500L 250ml 50ml-h 5 h Einm.Inf.Pump.' bestellen" title=" 1 x 'ACCUFUSER C0500L 250ml 50ml-h 5 h Einm.Inf.Pump.' bestellen " /></a>
1626
+ </div>
1627
+ </td>
1628
+ </tr>
1629
+ </table>
1630
+ </td>
1631
+ </tr>
1632
+ </table>
1633
+ </td>
1634
+ </tr>
1635
+ </table>
1636
+ </td>
1637
+ </tr>
1638
+ <tr>
1639
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1640
+ </td>
1641
+ <td width="5"></td>
1642
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C0500L 250ml 50ml-h 5 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950290_accufuser-c0500l-250ml-50ml-h-5-std-.html">ACCUFUSER C0500L 250ml 50ml-h 5 Std.</a></h2></td>
1643
+ </tr>
1644
+ <tr>
1645
+ <td></td>
1646
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1647
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1648
+ <tr>
1649
+ <td align="right" class="main2">
1650
+ <strong> 364,87 EUR </strong><br />
1651
+ </td>
1652
+ </tr>
1653
+ <tr>
1654
+ <td align="right" class="main">
1655
+ incl. 7 % 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>
1656
+ </td>
1657
+ </tr>
1658
+ </table>
1659
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1660
+ <tr height="15">
1661
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1662
+ </td>
1663
+ <td align="left" valign="top" height="15">
1664
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1665
+ Rezeptfrei</font> </font></a>
1666
+ </td>
1667
+ </tr>
1668
+ <tr height="15">
1669
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1670
+ </td>
1671
+ <td align="left" valign="top" height="15" class="productinfosmall">
1672
+ 10 St
1673
+ </td>
1674
+ </tr>
1675
+ <tr height="15">
1676
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1677
+ </td>
1678
+ <td align="left" valign="top" height="15" class="productinfosmall">
1679
+ <a class="liste" title="ACCUFUSER C0500L 250ml 50ml-h 5 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON GMBH</a>
1680
+ </td>
1681
+ </tr>
1682
+ </table>
1683
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1684
+ <tr>
1685
+ <td>
1686
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1687
+ <tr>
1688
+ <td>
1689
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1690
+ <tr>
1691
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1692
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1693
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1694
+ </tr>
1695
+ </table>
1696
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1697
+ <tr>
1698
+ <td><div align="right">
1699
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/5950290/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C0500L 250ml 50ml-h 5 Std.' bestellen" title=" 1 x 'ACCUFUSER C0500L 250ml 50ml-h 5 Std.' bestellen " /></a>
1700
+ </div>
1701
+ </td>
1702
+ </tr>
1703
+ </table>
1704
+ </td>
1705
+ </tr>
1706
+ </table>
1707
+ </td>
1708
+ </tr>
1709
+ </table>
1710
+ </td>
1711
+ </tr>
1712
+ <tr>
1713
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1714
+ </td>
1715
+ <td width="5"></td>
1716
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C1000L 250ml 100ml-h 2,5 h Einm.Inf.P." href="http://www.apotheke-online-internet.de/a/ac/p4073102_accufuser-c1000l-250ml-100ml-h-2-5-h-einm-inf-p-.html">ACCUFUSER C1000L 250ml 100ml-h 2,5 h Einm.Inf.P.</a></h2></td>
1717
+ </tr>
1718
+ <tr>
1719
+ <td></td>
1720
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1721
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1722
+ <tr>
1723
+ <td align="right" class="main2">
1724
+ <strong> 388,09 EUR </strong><br />
1725
+ </td>
1726
+ </tr>
1727
+ <tr>
1728
+ <td align="right" class="main">
1729
+ incl. 7 % 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>
1730
+ </td>
1731
+ </tr>
1732
+ </table>
1733
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1734
+ <tr height="15">
1735
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1736
+ </td>
1737
+ <td align="left" valign="top" height="15">
1738
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1739
+ Rezeptfrei</font> </font></a>
1740
+ </td>
1741
+ </tr>
1742
+ <tr height="15">
1743
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1744
+ </td>
1745
+ <td align="left" valign="top" height="15" class="productinfosmall">
1746
+ 10 St
1747
+ </td>
1748
+ </tr>
1749
+ <tr height="15">
1750
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1751
+ </td>
1752
+ <td align="left" valign="top" height="15" class="productinfosmall">
1753
+ <a class="liste" title="ACCUFUSER C1000L 250ml 100ml-h 2,5 h Einm.Inf.P. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
1754
+ </td>
1755
+ </tr>
1756
+ </table>
1757
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1758
+ <tr>
1759
+ <td>
1760
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1761
+ <tr>
1762
+ <td>
1763
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1764
+ <tr>
1765
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1766
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1767
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1768
+ </tr>
1769
+ </table>
1770
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1771
+ <tr>
1772
+ <td><div align="right">
1773
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4073102/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C1000L 250ml 100ml-h 2,5 h Einm.Inf.P.' bestellen" title=" 1 x 'ACCUFUSER C1000L 250ml 100ml-h 2,5 h Einm.Inf.P.' bestellen " /></a>
1774
+ </div>
1775
+ </td>
1776
+ </tr>
1777
+ </table>
1778
+ </td>
1779
+ </tr>
1780
+ </table>
1781
+ </td>
1782
+ </tr>
1783
+ </table>
1784
+ </td>
1785
+ </tr>
1786
+ <tr>
1787
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1788
+ </td>
1789
+ <td width="5"></td>
1790
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C1000L 250ml 100ml-h 2,5 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950321_accufuser-c1000l-250ml-100ml-h-2-5-std-.html">ACCUFUSER C1000L 250ml 100ml-h 2,5 Std.</a></h2></td>
1791
+ </tr>
1792
+ <tr>
1793
+ <td></td>
1794
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1795
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1796
+ <tr>
1797
+ <td align="right" class="main2">
1798
+ <strong> 364,87 EUR </strong><br />
1799
+ </td>
1800
+ </tr>
1801
+ <tr>
1802
+ <td align="right" class="main">
1803
+ incl. 7 % 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>
1804
+ </td>
1805
+ </tr>
1806
+ </table>
1807
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1808
+ <tr height="15">
1809
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1810
+ </td>
1811
+ <td align="left" valign="top" height="15">
1812
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1813
+ Rezeptfrei</font> </font></a>
1814
+ </td>
1815
+ </tr>
1816
+ <tr height="15">
1817
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1818
+ </td>
1819
+ <td align="left" valign="top" height="15" class="productinfosmall">
1820
+ 10 St
1821
+ </td>
1822
+ </tr>
1823
+ <tr height="15">
1824
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1825
+ </td>
1826
+ <td align="left" valign="top" height="15" class="productinfosmall">
1827
+ <a class="liste" title="ACCUFUSER C1000L 250ml 100ml-h 2,5 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON GMBH</a>
1828
+ </td>
1829
+ </tr>
1830
+ </table>
1831
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1832
+ <tr>
1833
+ <td>
1834
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1835
+ <tr>
1836
+ <td>
1837
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1838
+ <tr>
1839
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1840
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1841
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1842
+ </tr>
1843
+ </table>
1844
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1845
+ <tr>
1846
+ <td><div align="right">
1847
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/5950321/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C1000L 250ml 100ml-h 2,5 Std.' bestellen" title=" 1 x 'ACCUFUSER C1000L 250ml 100ml-h 2,5 Std.' bestellen " /></a>
1848
+ </div>
1849
+ </td>
1850
+ </tr>
1851
+ </table>
1852
+ </td>
1853
+ </tr>
1854
+ </table>
1855
+ </td>
1856
+ </tr>
1857
+ </table>
1858
+ </td>
1859
+ </tr>
1860
+ <tr>
1861
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1862
+ </td>
1863
+ <td width="5"></td>
1864
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C1000M 100ml 100ml-h 1 h Einm.Inf.P." href="http://www.apotheke-online-internet.de/a/ac/p4073148_accufuser-c1000m-100ml-100ml-h-1-h-einm-inf-p-.html">ACCUFUSER C1000M 100ml 100ml-h 1 h Einm.Inf.P.</a></h2></td>
1865
+ </tr>
1866
+ <tr>
1867
+ <td></td>
1868
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1869
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1870
+ <tr>
1871
+ <td align="right" class="main2">
1872
+ <strong> 287,94 EUR </strong><br />
1873
+ </td>
1874
+ </tr>
1875
+ <tr>
1876
+ <td align="right" class="main">
1877
+ incl. 7 % 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>
1878
+ </td>
1879
+ </tr>
1880
+ </table>
1881
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1882
+ <tr height="15">
1883
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1884
+ </td>
1885
+ <td align="left" valign="top" height="15">
1886
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1887
+ Rezeptfrei</font> </font></a>
1888
+ </td>
1889
+ </tr>
1890
+ <tr height="15">
1891
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1892
+ </td>
1893
+ <td align="left" valign="top" height="15" class="productinfosmall">
1894
+ 10 St
1895
+ </td>
1896
+ </tr>
1897
+ <tr height="15">
1898
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1899
+ </td>
1900
+ <td align="left" valign="top" height="15" class="productinfosmall">
1901
+ <a class="liste" title="ACCUFUSER C1000M 100ml 100ml-h 1 h Einm.Inf.P. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
1902
+ </td>
1903
+ </tr>
1904
+ </table>
1905
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1906
+ <tr>
1907
+ <td>
1908
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1909
+ <tr>
1910
+ <td>
1911
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1912
+ <tr>
1913
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1914
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1915
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1916
+ </tr>
1917
+ </table>
1918
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1919
+ <tr>
1920
+ <td><div align="right">
1921
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4073148/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C1000M 100ml 100ml-h 1 h Einm.Inf.P.' bestellen" title=" 1 x 'ACCUFUSER C1000M 100ml 100ml-h 1 h Einm.Inf.P.' bestellen " /></a>
1922
+ </div>
1923
+ </td>
1924
+ </tr>
1925
+ </table>
1926
+ </td>
1927
+ </tr>
1928
+ </table>
1929
+ </td>
1930
+ </tr>
1931
+ </table>
1932
+ </td>
1933
+ </tr>
1934
+ <tr>
1935
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
1936
+ </td>
1937
+ <td width="5"></td>
1938
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C1000M 100ml 100ml-h 1 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950172_accufuser-c1000m-100ml-100ml-h-1-std-.html">ACCUFUSER C1000M 100ml 100ml-h 1 Std.</a></h2></td>
1939
+ </tr>
1940
+ <tr>
1941
+ <td></td>
1942
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
1943
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1944
+ <tr>
1945
+ <td align="right" class="main2">
1946
+ <strong> 270,71 EUR </strong><br />
1947
+ </td>
1948
+ </tr>
1949
+ <tr>
1950
+ <td align="right" class="main">
1951
+ incl. 7 % 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>
1952
+ </td>
1953
+ </tr>
1954
+ </table>
1955
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1956
+ <tr height="15">
1957
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
1958
+ </td>
1959
+ <td align="left" valign="top" height="15">
1960
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
1961
+ Rezeptfrei</font> </font></a>
1962
+ </td>
1963
+ </tr>
1964
+ <tr height="15">
1965
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
1966
+ </td>
1967
+ <td align="left" valign="top" height="15" class="productinfosmall">
1968
+ 10 St
1969
+ </td>
1970
+ </tr>
1971
+ <tr height="15">
1972
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
1973
+ </td>
1974
+ <td align="left" valign="top" height="15" class="productinfosmall">
1975
+ <a class="liste" title="ACCUFUSER C1000M 100ml 100ml-h 1 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON GMBH</a>
1976
+ </td>
1977
+ </tr>
1978
+ </table>
1979
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1980
+ <tr>
1981
+ <td>
1982
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
1983
+ <tr>
1984
+ <td>
1985
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
1986
+ <tr>
1987
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
1988
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
1989
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
1990
+ </tr>
1991
+ </table>
1992
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
1993
+ <tr>
1994
+ <td><div align="right">
1995
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/5950172/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C1000M 100ml 100ml-h 1 Std.' bestellen" title=" 1 x 'ACCUFUSER C1000M 100ml 100ml-h 1 Std.' bestellen " /></a>
1996
+ </div>
1997
+ </td>
1998
+ </tr>
1999
+ </table>
2000
+ </td>
2001
+ </tr>
2002
+ </table>
2003
+ </td>
2004
+ </tr>
2005
+ </table>
2006
+ </td>
2007
+ </tr>
2008
+ <tr>
2009
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2010
+ </td>
2011
+ <td width="5"></td>
2012
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C2000L 250ml 200ml-h 1,3 h Einm.Inf.P." href="http://www.apotheke-online-internet.de/a/ac/p4073119_accufuser-c2000l-250ml-200ml-h-1-3-h-einm-inf-p-.html">ACCUFUSER C2000L 250ml 200ml-h 1,3 h Einm.Inf.P.</a></h2></td>
2013
+ </tr>
2014
+ <tr>
2015
+ <td></td>
2016
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2017
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2018
+ <tr>
2019
+ <td align="right" class="main2">
2020
+ <strong> 388,09 EUR </strong><br />
2021
+ </td>
2022
+ </tr>
2023
+ <tr>
2024
+ <td align="right" class="main">
2025
+ incl. 7 % 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>
2026
+ </td>
2027
+ </tr>
2028
+ </table>
2029
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2030
+ <tr height="15">
2031
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2032
+ </td>
2033
+ <td align="left" valign="top" height="15">
2034
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2035
+ Rezeptfrei</font> </font></a>
2036
+ </td>
2037
+ </tr>
2038
+ <tr height="15">
2039
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2040
+ </td>
2041
+ <td align="left" valign="top" height="15" class="productinfosmall">
2042
+ 10 St
2043
+ </td>
2044
+ </tr>
2045
+ <tr height="15">
2046
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2047
+ </td>
2048
+ <td align="left" valign="top" height="15" class="productinfosmall">
2049
+ <a class="liste" title="ACCUFUSER C2000L 250ml 200ml-h 1,3 h Einm.Inf.P. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
2050
+ </td>
2051
+ </tr>
2052
+ </table>
2053
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2054
+ <tr>
2055
+ <td>
2056
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2057
+ <tr>
2058
+ <td>
2059
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2060
+ <tr>
2061
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2062
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2063
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2064
+ </tr>
2065
+ </table>
2066
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2067
+ <tr>
2068
+ <td><div align="right">
2069
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4073119/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C2000L 250ml 200ml-h 1,3 h Einm.Inf.P.' bestellen" title=" 1 x 'ACCUFUSER C2000L 250ml 200ml-h 1,3 h Einm.Inf.P.' bestellen " /></a>
2070
+ </div>
2071
+ </td>
2072
+ </tr>
2073
+ </table>
2074
+ </td>
2075
+ </tr>
2076
+ </table>
2077
+ </td>
2078
+ </tr>
2079
+ </table>
2080
+ </td>
2081
+ </tr>
2082
+ <tr>
2083
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2084
+ </td>
2085
+ <td width="5"></td>
2086
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C2000L 250ml 200ml-h 1,3 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950367_accufuser-c2000l-250ml-200ml-h-1-3-std-.html">ACCUFUSER C2000L 250ml 200ml-h 1,3 Std.</a></h2></td>
2087
+ </tr>
2088
+ <tr>
2089
+ <td></td>
2090
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2091
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2092
+ <tr>
2093
+ <td align="right" class="main2">
2094
+ <strong> 364,87 EUR </strong><br />
2095
+ </td>
2096
+ </tr>
2097
+ <tr>
2098
+ <td align="right" class="main">
2099
+ incl. 7 % 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>
2100
+ </td>
2101
+ </tr>
2102
+ </table>
2103
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2104
+ <tr height="15">
2105
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2106
+ </td>
2107
+ <td align="left" valign="top" height="15">
2108
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2109
+ Rezeptfrei</font> </font></a>
2110
+ </td>
2111
+ </tr>
2112
+ <tr height="15">
2113
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2114
+ </td>
2115
+ <td align="left" valign="top" height="15" class="productinfosmall">
2116
+ 10 St
2117
+ </td>
2118
+ </tr>
2119
+ <tr height="15">
2120
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2121
+ </td>
2122
+ <td align="left" valign="top" height="15" class="productinfosmall">
2123
+ <a class="liste" title="ACCUFUSER C2000L 250ml 200ml-h 1,3 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON GMBH</a>
2124
+ </td>
2125
+ </tr>
2126
+ </table>
2127
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2128
+ <tr>
2129
+ <td>
2130
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2131
+ <tr>
2132
+ <td>
2133
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2134
+ <tr>
2135
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2136
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2137
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2138
+ </tr>
2139
+ </table>
2140
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2141
+ <tr>
2142
+ <td><div align="right">
2143
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/5950367/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C2000L 250ml 200ml-h 1,3 Std.' bestellen" title=" 1 x 'ACCUFUSER C2000L 250ml 200ml-h 1,3 Std.' bestellen " /></a>
2144
+ </div>
2145
+ </td>
2146
+ </tr>
2147
+ </table>
2148
+ </td>
2149
+ </tr>
2150
+ </table>
2151
+ </td>
2152
+ </tr>
2153
+ </table>
2154
+ </td>
2155
+ </tr>
2156
+ <tr>
2157
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2158
+ </td>
2159
+ <td width="5"></td>
2160
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C2000M 100ml 200ml-h 0,5 h Einm.Inf.P." href="http://www.apotheke-online-internet.de/a/ac/p4073131_accufuser-c2000m-100ml-200ml-h-0-5-h-einm-inf-p-.html">ACCUFUSER C2000M 100ml 200ml-h 0,5 h Einm.Inf.P.</a></h2></td>
2161
+ </tr>
2162
+ <tr>
2163
+ <td></td>
2164
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2165
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2166
+ <tr>
2167
+ <td align="right" class="main2">
2168
+ <strong> 287,45 EUR </strong><br />
2169
+ </td>
2170
+ </tr>
2171
+ <tr>
2172
+ <td align="right" class="main">
2173
+ incl. 7 % 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>
2174
+ </td>
2175
+ </tr>
2176
+ </table>
2177
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2178
+ <tr height="15">
2179
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2180
+ </td>
2181
+ <td align="left" valign="top" height="15">
2182
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2183
+ Rezeptfrei</font> </font></a>
2184
+ </td>
2185
+ </tr>
2186
+ <tr height="15">
2187
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2188
+ </td>
2189
+ <td align="left" valign="top" height="15" class="productinfosmall">
2190
+ 10 St
2191
+ </td>
2192
+ </tr>
2193
+ <tr height="15">
2194
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2195
+ </td>
2196
+ <td align="left" valign="top" height="15" class="productinfosmall">
2197
+ <a class="liste" title="ACCUFUSER C2000M 100ml 200ml-h 0,5 h Einm.Inf.P. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
2198
+ </td>
2199
+ </tr>
2200
+ </table>
2201
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2202
+ <tr>
2203
+ <td>
2204
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2205
+ <tr>
2206
+ <td>
2207
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2208
+ <tr>
2209
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2210
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2211
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2212
+ </tr>
2213
+ </table>
2214
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2215
+ <tr>
2216
+ <td><div align="right">
2217
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4073131/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C2000M 100ml 200ml-h 0,5 h Einm.Inf.P.' bestellen" title=" 1 x 'ACCUFUSER C2000M 100ml 200ml-h 0,5 h Einm.Inf.P.' bestellen " /></a>
2218
+ </div>
2219
+ </td>
2220
+ </tr>
2221
+ </table>
2222
+ </td>
2223
+ </tr>
2224
+ </table>
2225
+ </td>
2226
+ </tr>
2227
+ </table>
2228
+ </td>
2229
+ </tr>
2230
+ <tr>
2231
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2232
+ </td>
2233
+ <td width="5"></td>
2234
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C2000M 100ml 200ml-h 0,5 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950189_accufuser-c2000m-100ml-200ml-h-0-5-std-.html">ACCUFUSER C2000M 100ml 200ml-h 0,5 Std.</a></h2></td>
2235
+ </tr>
2236
+ <tr>
2237
+ <td></td>
2238
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2239
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2240
+ <tr>
2241
+ <td align="right" class="main2">
2242
+ <strong> 270,71 EUR </strong><br />
2243
+ </td>
2244
+ </tr>
2245
+ <tr>
2246
+ <td align="right" class="main">
2247
+ incl. 7 % 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>
2248
+ </td>
2249
+ </tr>
2250
+ </table>
2251
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2252
+ <tr height="15">
2253
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2254
+ </td>
2255
+ <td align="left" valign="top" height="15">
2256
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2257
+ Rezeptfrei</font> </font></a>
2258
+ </td>
2259
+ </tr>
2260
+ <tr height="15">
2261
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2262
+ </td>
2263
+ <td align="left" valign="top" height="15" class="productinfosmall">
2264
+ 10 St
2265
+ </td>
2266
+ </tr>
2267
+ <tr height="15">
2268
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2269
+ </td>
2270
+ <td align="left" valign="top" height="15" class="productinfosmall">
2271
+ <a class="liste" title="ACCUFUSER C2000M 100ml 200ml-h 0,5 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON GMBH</a>
2272
+ </td>
2273
+ </tr>
2274
+ </table>
2275
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2276
+ <tr>
2277
+ <td>
2278
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2279
+ <tr>
2280
+ <td>
2281
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2282
+ <tr>
2283
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2284
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2285
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2286
+ </tr>
2287
+ </table>
2288
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2289
+ <tr>
2290
+ <td><div align="right">
2291
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/5950189/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C2000M 100ml 200ml-h 0,5 Std.' bestellen" title=" 1 x 'ACCUFUSER C2000M 100ml 200ml-h 0,5 Std.' bestellen " /></a>
2292
+ </div>
2293
+ </td>
2294
+ </tr>
2295
+ </table>
2296
+ </td>
2297
+ </tr>
2298
+ </table>
2299
+ </td>
2300
+ </tr>
2301
+ </table>
2302
+ </td>
2303
+ </tr>
2304
+ <tr>
2305
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2306
+ </td>
2307
+ <td width="5"></td>
2308
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C2500L 250ml 250ml-h 1 h Einm.Inf.P." href="http://www.apotheke-online-internet.de/a/ac/p4073125_accufuser-c2500l-250ml-250ml-h-1-h-einm-inf-p-.html">ACCUFUSER C2500L 250ml 250ml-h 1 h Einm.Inf.P.</a></h2></td>
2309
+ </tr>
2310
+ <tr>
2311
+ <td></td>
2312
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2313
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2314
+ <tr>
2315
+ <td align="right" class="main2">
2316
+ <strong> 388,09 EUR </strong><br />
2317
+ </td>
2318
+ </tr>
2319
+ <tr>
2320
+ <td align="right" class="main">
2321
+ incl. 7 % 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>
2322
+ </td>
2323
+ </tr>
2324
+ </table>
2325
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2326
+ <tr height="15">
2327
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2328
+ </td>
2329
+ <td align="left" valign="top" height="15">
2330
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2331
+ Rezeptfrei</font> </font></a>
2332
+ </td>
2333
+ </tr>
2334
+ <tr height="15">
2335
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2336
+ </td>
2337
+ <td align="left" valign="top" height="15" class="productinfosmall">
2338
+ 10 St
2339
+ </td>
2340
+ </tr>
2341
+ <tr height="15">
2342
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2343
+ </td>
2344
+ <td align="left" valign="top" height="15" class="productinfosmall">
2345
+ <a class="liste" title="ACCUFUSER C2500L 250ml 250ml-h 1 h Einm.Inf.P. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
2346
+ </td>
2347
+ </tr>
2348
+ </table>
2349
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2350
+ <tr>
2351
+ <td>
2352
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2353
+ <tr>
2354
+ <td>
2355
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2356
+ <tr>
2357
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2358
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2359
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2360
+ </tr>
2361
+ </table>
2362
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2363
+ <tr>
2364
+ <td><div align="right">
2365
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4073125/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C2500L 250ml 250ml-h 1 h Einm.Inf.P.' bestellen" title=" 1 x 'ACCUFUSER C2500L 250ml 250ml-h 1 h Einm.Inf.P.' bestellen " /></a>
2366
+ </div>
2367
+ </td>
2368
+ </tr>
2369
+ </table>
2370
+ </td>
2371
+ </tr>
2372
+ </table>
2373
+ </td>
2374
+ </tr>
2375
+ </table>
2376
+ </td>
2377
+ </tr>
2378
+ <tr>
2379
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2380
+ </td>
2381
+ <td width="5"></td>
2382
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER C2500L 250ml 250ml-h 1 Std." href="http://www.apotheke-online-internet.de/a/ac/p5950373_accufuser-c2500l-250ml-250ml-h-1-std-.html">ACCUFUSER C2500L 250ml 250ml-h 1 Std.</a></h2></td>
2383
+ </tr>
2384
+ <tr>
2385
+ <td></td>
2386
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2387
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2388
+ <tr>
2389
+ <td align="right" class="main2">
2390
+ <strong> 364,87 EUR </strong><br />
2391
+ </td>
2392
+ </tr>
2393
+ <tr>
2394
+ <td align="right" class="main">
2395
+ incl. 7 % 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>
2396
+ </td>
2397
+ </tr>
2398
+ </table>
2399
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2400
+ <tr height="15">
2401
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2402
+ </td>
2403
+ <td align="left" valign="top" height="15">
2404
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2405
+ Rezeptfrei</font> </font></a>
2406
+ </td>
2407
+ </tr>
2408
+ <tr height="15">
2409
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2410
+ </td>
2411
+ <td align="left" valign="top" height="15" class="productinfosmall">
2412
+ 10 St
2413
+ </td>
2414
+ </tr>
2415
+ <tr height="15">
2416
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2417
+ </td>
2418
+ <td align="left" valign="top" height="15" class="productinfosmall">
2419
+ <a class="liste" title="ACCUFUSER C2500L 250ml 250ml-h 1 Std. von PROMECON GMBH" href="advanced_search_result.php?keywords=PROMECON GMBH">PROMECON GMBH</a>
2420
+ </td>
2421
+ </tr>
2422
+ </table>
2423
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2424
+ <tr>
2425
+ <td>
2426
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2427
+ <tr>
2428
+ <td>
2429
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2430
+ <tr>
2431
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2432
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2433
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2434
+ </tr>
2435
+ </table>
2436
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2437
+ <tr>
2438
+ <td><div align="right">
2439
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/5950373/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER C2500L 250ml 250ml-h 1 Std.' bestellen" title=" 1 x 'ACCUFUSER C2500L 250ml 250ml-h 1 Std.' bestellen " /></a>
2440
+ </div>
2441
+ </td>
2442
+ </tr>
2443
+ </table>
2444
+ </td>
2445
+ </tr>
2446
+ </table>
2447
+ </td>
2448
+ </tr>
2449
+ </table>
2450
+ </td>
2451
+ </tr>
2452
+ <tr>
2453
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2454
+ </td>
2455
+ <td width="5"></td>
2456
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER Plus M0508M 100ml 0,5ml-h 8 min." href="http://www.apotheke-online-internet.de/a/ac/p3087674_accufuser-plus-m0508m-100ml-0-5ml-h-8-min-.html">ACCUFUSER Plus M0508M 100ml 0,5ml-h 8 min.</a></h2></td>
2457
+ </tr>
2458
+ <tr>
2459
+ <td></td>
2460
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2461
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2462
+ <tr>
2463
+ <td align="right" class="main2">
2464
+ <strong> 1.521,34 EUR </strong><br />
2465
+ </td>
2466
+ </tr>
2467
+ <tr>
2468
+ <td align="right" class="main">
2469
+ incl. 7 % 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>
2470
+ </td>
2471
+ </tr>
2472
+ </table>
2473
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2474
+ <tr height="15">
2475
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2476
+ </td>
2477
+ <td align="left" valign="top" height="15">
2478
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2479
+ Rezeptfrei</font> </font></a>
2480
+ </td>
2481
+ </tr>
2482
+ <tr height="15">
2483
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2484
+ </td>
2485
+ <td align="left" valign="top" height="15" class="productinfosmall">
2486
+ 10 St
2487
+ </td>
2488
+ </tr>
2489
+ <tr height="15">
2490
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2491
+ </td>
2492
+ <td align="left" valign="top" height="15" class="productinfosmall">
2493
+ <a class="liste" title="ACCUFUSER Plus M0508M 100ml 0,5ml-h 8 min. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
2494
+ </td>
2495
+ </tr>
2496
+ </table>
2497
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2498
+ <tr>
2499
+ <td>
2500
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2501
+ <tr>
2502
+ <td>
2503
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2504
+ <tr>
2505
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2506
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2507
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2508
+ </tr>
2509
+ </table>
2510
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2511
+ <tr>
2512
+ <td><div align="right">
2513
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3087674/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER Plus M0508M 100ml 0,5ml-h 8 min.' bestellen" title=" 1 x 'ACCUFUSER Plus M0508M 100ml 0,5ml-h 8 min.' bestellen " /></a>
2514
+ </div>
2515
+ </td>
2516
+ </tr>
2517
+ </table>
2518
+ </td>
2519
+ </tr>
2520
+ </table>
2521
+ </td>
2522
+ </tr>
2523
+ </table>
2524
+ </td>
2525
+ </tr>
2526
+ <tr>
2527
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2528
+ </td>
2529
+ <td width="5"></td>
2530
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER Plus M0508S 60ml 0,5ml-h 8 min." href="http://www.apotheke-online-internet.de/a/ac/p3087177_accufuser-plus-m0508s-60ml-0-5ml-h-8-min-.html">ACCUFUSER Plus M0508S 60ml 0,5ml-h 8 min.</a></h2></td>
2531
+ </tr>
2532
+ <tr>
2533
+ <td></td>
2534
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2535
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2536
+ <tr>
2537
+ <td align="right" class="main2">
2538
+ <strong> 1.521,34 EUR </strong><br />
2539
+ </td>
2540
+ </tr>
2541
+ <tr>
2542
+ <td align="right" class="main">
2543
+ incl. 7 % 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>
2544
+ </td>
2545
+ </tr>
2546
+ </table>
2547
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2548
+ <tr height="15">
2549
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2550
+ </td>
2551
+ <td align="left" valign="top" height="15">
2552
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2553
+ Rezeptfrei</font> </font></a>
2554
+ </td>
2555
+ </tr>
2556
+ <tr height="15">
2557
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2558
+ </td>
2559
+ <td align="left" valign="top" height="15" class="productinfosmall">
2560
+ 10 St
2561
+ </td>
2562
+ </tr>
2563
+ <tr height="15">
2564
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2565
+ </td>
2566
+ <td align="left" valign="top" height="15" class="productinfosmall">
2567
+ <a class="liste" title="ACCUFUSER Plus M0508S 60ml 0,5ml-h 8 min. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
2568
+ </td>
2569
+ </tr>
2570
+ </table>
2571
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2572
+ <tr>
2573
+ <td>
2574
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2575
+ <tr>
2576
+ <td>
2577
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2578
+ <tr>
2579
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2580
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2581
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2582
+ </tr>
2583
+ </table>
2584
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2585
+ <tr>
2586
+ <td><div align="right">
2587
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3087177/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER Plus M0508S 60ml 0,5ml-h 8 min.' bestellen" title=" 1 x 'ACCUFUSER Plus M0508S 60ml 0,5ml-h 8 min.' bestellen " /></a>
2588
+ </div>
2589
+ </td>
2590
+ </tr>
2591
+ </table>
2592
+ </td>
2593
+ </tr>
2594
+ </table>
2595
+ </td>
2596
+ </tr>
2597
+ </table>
2598
+ </td>
2599
+ </tr>
2600
+ <tr>
2601
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2602
+ </td>
2603
+ <td width="5"></td>
2604
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER Plus M0515M 100ml 0,5ml-h 15 min." href="http://www.apotheke-online-internet.de/a/ac/p3087728_accufuser-plus-m0515m-100ml-0-5ml-h-15-min-.html">ACCUFUSER Plus M0515M 100ml 0,5ml-h 15 min.</a></h2></td>
2605
+ </tr>
2606
+ <tr>
2607
+ <td></td>
2608
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2609
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2610
+ <tr>
2611
+ <td align="right" class="main2">
2612
+ <strong> 1.521,34 EUR </strong><br />
2613
+ </td>
2614
+ </tr>
2615
+ <tr>
2616
+ <td align="right" class="main">
2617
+ incl. 7 % 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>
2618
+ </td>
2619
+ </tr>
2620
+ </table>
2621
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2622
+ <tr height="15">
2623
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2624
+ </td>
2625
+ <td align="left" valign="top" height="15">
2626
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2627
+ Rezeptfrei</font> </font></a>
2628
+ </td>
2629
+ </tr>
2630
+ <tr height="15">
2631
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2632
+ </td>
2633
+ <td align="left" valign="top" height="15" class="productinfosmall">
2634
+ 10 St
2635
+ </td>
2636
+ </tr>
2637
+ <tr height="15">
2638
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2639
+ </td>
2640
+ <td align="left" valign="top" height="15" class="productinfosmall">
2641
+ <a class="liste" title="ACCUFUSER Plus M0515M 100ml 0,5ml-h 15 min. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
2642
+ </td>
2643
+ </tr>
2644
+ </table>
2645
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2646
+ <tr>
2647
+ <td>
2648
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2649
+ <tr>
2650
+ <td>
2651
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2652
+ <tr>
2653
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2654
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2655
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2656
+ </tr>
2657
+ </table>
2658
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2659
+ <tr>
2660
+ <td><div align="right">
2661
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3087728/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER Plus M0515M 100ml 0,5ml-h 15 min.' bestellen" title=" 1 x 'ACCUFUSER Plus M0515M 100ml 0,5ml-h 15 min.' bestellen " /></a>
2662
+ </div>
2663
+ </td>
2664
+ </tr>
2665
+ </table>
2666
+ </td>
2667
+ </tr>
2668
+ </table>
2669
+ </td>
2670
+ </tr>
2671
+ </table>
2672
+ </td>
2673
+ </tr>
2674
+ <tr>
2675
+ <td rowspan="2" align="left" valign="top">&nbsp; <br />
2676
+ </td>
2677
+ <td width="5"></td>
2678
+ <td align="left"><h2><a title="Weitere Informationen zu ACCUFUSER Plus M0515S 60ml 0,5ml-h 15 min." href="http://www.apotheke-online-internet.de/a/ac/p3087214_accufuser-plus-m0515s-60ml-0-5ml-h-15-min-.html">ACCUFUSER Plus M0515S 60ml 0,5ml-h 15 min.</a></h2></td>
2679
+ </tr>
2680
+ <tr>
2681
+ <td></td>
2682
+ <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
2683
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2684
+ <tr>
2685
+ <td align="right" class="main2">
2686
+ <strong> 1.521,34 EUR </strong><br />
2687
+ </td>
2688
+ </tr>
2689
+ <tr>
2690
+ <td align="right" class="main">
2691
+ incl. 7 % 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>
2692
+ </td>
2693
+ </tr>
2694
+ </table>
2695
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2696
+ <tr height="15">
2697
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
2698
+ </td>
2699
+ <td align="left" valign="top" height="15">
2700
+ <font size="1" face="Verdana,Geneva,Arial,Sans-serif">
2701
+ Rezeptfrei</font> </font></a>
2702
+ </td>
2703
+ </tr>
2704
+ <tr height="15">
2705
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
2706
+ </td>
2707
+ <td align="left" valign="top" height="15" class="productinfosmall">
2708
+ 10 St
2709
+ </td>
2710
+ </tr>
2711
+ <tr height="15">
2712
+ <td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
2713
+ </td>
2714
+ <td align="left" valign="top" height="15" class="productinfosmall">
2715
+ <a class="liste" title="ACCUFUSER Plus M0515S 60ml 0,5ml-h 15 min. von DELTASELECT GMBH" href="advanced_search_result.php?keywords=DELTASELECT GMBH">DELTASELECT GMBH</a>
2716
+ </td>
2717
+ </tr>
2718
+ </table>
2719
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2720
+ <tr>
2721
+ <td>
2722
+ <table width="100%" cellpadding="0" cellspacing="0" border="0">
2723
+ <tr>
2724
+ <td>
2725
+ <table width="315" border="0" cellpadding="0" cellspacing="0">
2726
+ <tr>
2727
+ <td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
2728
+ <td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
2729
+ <td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
2730
+ </tr>
2731
+ </table>
2732
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2733
+ <tr>
2734
+ <td><div align="right">
2735
+ <a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3087214/cat/4002/category/AC/page/13"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUFUSER Plus M0515S 60ml 0,5ml-h 15 min.' bestellen" title=" 1 x 'ACCUFUSER Plus M0515S 60ml 0,5ml-h 15 min.' bestellen " /></a>
2736
+ </div>
2737
+ </td>
2738
+ </tr>
2739
+ </table>
2740
+ </td>
2741
+ </tr>
2742
+ </table>
2743
+ </td>
2744
+ </tr>
2745
+ </table>
2746
+ </td>
2747
+ </tr>
2748
+ </table>
2749
+ </td>
2750
+ </tr>
2751
+ </table>
2752
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
2753
+ <tr valign="top">
2754
+ <td class="main"><p>Artikel Verzeichnis alphabetisch AC</p>
2755
+ <p>Unsere Kunden suchen h&auml;ufig:</p>
2756
+ <p>ACALYPHA Acarosan </p></td>
2757
+ <td align="right">&nbsp;</td>
2758
+ </tr>
2759
+ </table>
2760
+ <table width="100%" border="0">
2761
+ <tr>
2762
+ <td align="left">
2763
+ <!--
2764
+ * Social Bookmark Script
2765
+ * @ Version 1.5
2766
+ * @ Copyright (C) 2006 by Alexander Hadj Hassine - All rights reserved
2767
+ * @ Website http://www.social-bookmark-script.de/
2768
+ * @
2769
+ * @ Bei Nutzung des Scripts muessen alle unsere Copyright-Hinweise und Links in dem Script selbst,
2770
+ * @ sowie in der Anzeige/Ausgabe unveraendert bleiben!
2771
+ * @
2772
+ * @ D.h., sie duerfen nicht entfernt, umgewandelt, versteckt oder unsichtbar gemacht werden,
2773
+ * @ es sei den Sie verlinken http://www.social-bookmark-script.de/ mindestens 1 mal
2774
+ * @ "suchmaschinenfreundlich" von Ihrer Startseite!
2775
+ -->
2776
+ <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>
2777
+ <div style="border-top-style:solid; padding-top:3px; border-top-width: 1px; border-top-color: #2A4956; float: center;">
2778
+ <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>
2779
+ <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>
2780
+ <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>
2781
+ <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>
2782
+ <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>
2783
+ <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>
2784
+ <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>
2785
+ <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>
2786
+ <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>
2787
+ <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>
2788
+ <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>
2789
+ <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>
2790
+ <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>
2791
+ <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>
2792
+ <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>
2793
+ <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>
2794
+ <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>
2795
+ <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>
2796
+ </div>
2797
+ </td>
2798
+ </tr>
2799
+ </table>
2800
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
2801
+ <tr height="10">
2802
+ <td align="center" valign="middle" height="20"><font size="1" face="verdana">Abbildungen k&ouml;nnen von Originalprodukten abweichen</font></td>
2803
+ </tr>
2804
+ <tr>
2805
+ <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>
2806
+ </tr>
2807
+ <tr>
2808
+ <td>
2809
+ <table border="0" width="100%" cellspacing="0" cellpadding="2">
2810
+ <tr>
2811
+ <td class="smallText">Zeige <b>361</b> bis <b>390</b> (von insgesamt <b>2285</b> Artikeln)</td>
2812
+ </tr>
2813
+ <tr>
2814
+ <td class="smallText" align="left">Seiten: <a href="http://www.apotheke-online-internet.de/a/ac-page-12.html" class="pageResults" title=" vorherige Seite ">[&lt;&lt;&nbsp;vorherige]</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-12.html" class="pageResults" title=" Vorhergehende 12 Seiten ">...</a>&nbsp;<b>13</b>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-14.html" class="pageResults" title=" Seite 14 ">14</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-15.html" class="pageResults" title=" Seite 15 ">15</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-16.html" class="pageResults" title=" Seite 16 ">16</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-17.html" class="pageResults" title=" Seite 17 ">17</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-18.html" class="pageResults" title=" Seite 18 ">18</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-19.html" class="pageResults" title=" Seite 19 ">19</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-20.html" class="pageResults" title=" Seite 20 ">20</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-21.html" class="pageResults" title=" Seite 21 ">21</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-22.html" class="pageResults" title=" Seite 22 ">22</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-23.html" class="pageResults" title=" Seite 23 ">23</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-24.html" class="pageResults" title=" Seite 24 ">24</a>&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-25.html" class="pageResults" title=" N&auml;chste 12 Seiten ">...</a>&nbsp;&nbsp;<a href="http://www.apotheke-online-internet.de/a/ac-page-14.html" class="pageResults" title=" n&auml;chste Seite ">[n&auml;chste&nbsp;&gt;&gt;]</a>&nbsp;</td>
2815
+ </tr>
2816
+ </table></td>
2817
+ </tr>
2818
+
2819
+ </table>
2820
+ </div>
2821
+ </div>
2822
+ <div style="width:800px;margin:0px auto;clear: both;">
2823
+ <div align="center" class="ifooter">
2824
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center">
2825
+ <tr>
2826
+ <td align="center" valign="top">
2827
+ <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>
2828
+ <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>
2829
+ <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>
2830
+ <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>
2831
+ <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>
2832
+ <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>
2833
+ <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>
2834
+ <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>
2835
+ <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>
2836
+ <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>
2837
+ <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>
2838
+ <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>
2839
+ <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>
2840
+ <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>
2841
+ <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>
2842
+ <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>
2843
+ <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>
2844
+ <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>
2845
+ <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>
2846
+ <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>
2847
+ <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>
2848
+ <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>
2849
+ <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>
2850
+ </td>
2851
+ </tr>
2852
+ </table>
2853
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2854
+ <td align="center" valign="top">
2855
+
2856
+
2857
+ <table width="100%" border="0" cellpadding="2" cellspacing="0">
2858
+ <tr>
2859
+ <td class="infoBoxHeading_cloud">
2860
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
2861
+ <tr>
2862
+ <td align="left" class="infoBoxHeadingTitle">Unsere Kunden suchen</td>
2863
+ </tr>
2864
+ </table>
2865
+ </td>
2866
+ </tr>
2867
+ <tr>
2868
+ <td class="infoBoxHeading_cloud" align="left">
2869
+ <table width="95%" border="0" cellpadding="2" cellspacing="0">
2870
+ <tr>
2871
+ <td class="boxText">
2872
+ <table border="0" width="100%" cellspacing="0" cellpadding="0">
2873
+ <tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
2874
+ <tr>
2875
+ <td align="center" class="boxText">
2876
+ <a title="Cadion" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Cadion" style="font-size:12px; font-weight:300; color:#AB974F;">Cadion</a>&nbsp;
2877
+ <a title="Combudoron" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Combudoron" style="font-size:14px; font-weight:400; color:#B59728;">Combudoron</a>&nbsp;
2878
+ <a title="Daisy" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Daisy" style="font-size:10px; font-weight:200; color:#A09879;">Daisy</a>&nbsp;
2879
+ <a title="Dolorsorin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Dolorsorin" style="font-size:13px; font-weight:300; color:#AD9747;">Dolorsorin</a>&nbsp;
2880
+ <a title="Dynexan" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Dynexan" style="font-size:13px; font-weight:400; color:#B09739;">Dynexan</a>&nbsp;
2881
+ <a title="Eudorlin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Eudorlin" style="font-size:15px; font-weight:500; color:#B8971A;">Eudorlin</a>&nbsp;
2882
+ <a title="Formigran" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Formigran" style="font-size:13px; font-weight:300; color:#AD9747;">Formigran</a>&nbsp;
2883
+ <a title="Heilerde Kapseln" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Heilerde+Kapseln" style="font-size:13px; font-weight:400; color:#B0973A;">Heilerde Kapseln</a>&nbsp;
2884
+ <a title="Isostar" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Isostar" style="font-size:11px; font-weight:200; color:#A19877;">Isostar</a>&nbsp;
2885
+ <a title="Juckreiz" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Juckreiz" style="font-size:15px; font-weight:500; color:#BA9715;">Juckreiz</a>&nbsp;
2886
+ <a title="Klosterfrau Nervenruh" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Klosterfrau+Nervenruh" style="font-size:13px; font-weight:400; color:#B0973A;">Klosterfrau Nervenruh</a>&nbsp;
2887
+ <a title="Kompressen steril" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Kompressen+steril" style="font-size:13px; font-weight:300; color:#AD9747;">Kompressen steril</a>&nbsp;
2888
+ <a title="Kranbeere" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Kranbeere" style="font-size:10px; font-weight:200; color:#A0987B;">Kranbeere</a>&nbsp;
2889
+ <a title="Myrrhinil" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Myrrhinil" style="font-size:11px; font-weight:200; color:#A3986F;">Myrrhinil</a>&nbsp;
2890
+ <a title="Nervennahrung" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Nervennahrung" style="font-size:9px; font-weight:100; color:#999999;">Nervennahrung</a>&nbsp;
2891
+ <a title="Neyparadent" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Neyparadent" style="font-size:13px; font-weight:400; color:#AF973E;">Neyparadent</a>&nbsp;
2892
+ <a title="Nicotinell 24" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Nicotinell+24" style="font-size:13px; font-weight:400; color:#AE9742;">Nicotinell 24</a>&nbsp;
2893
+ <a title="Nystatin lederle" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Nystatin+lederle" style="font-size:13px; font-weight:400; color:#AD9746;">Nystatin lederle</a>&nbsp;
2894
+ <a title="Omnifilm" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Omnifilm" style="font-size:10px; font-weight:200; color:#A0987B;">Omnifilm</a>&nbsp;
2895
+ <a title="Regenaplex" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Regenaplex" style="font-size:11px; font-weight:200; color:#A19877;">Regenaplex</a>&nbsp;
2896
+ <a title="Sanostol Saft" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Sanostol+Saft" style="font-size:14px; font-weight:400; color:#B49729;">Sanostol Saft</a>&nbsp;
2897
+ <a title="Selukos" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Selukos" style="font-size:15px; font-weight:500; color:#B7971F;">Selukos</a>&nbsp;
2898
+ <a title="Syndet seife" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Syndet+seife" style="font-size:11px; font-weight:300; color:#A69864;">Syndet seife</a>&nbsp;
2899
+ <a title="Vitasprint b12 trinkfl�schchen" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Vitasprint+b12+trinkfl%E4schchen" style="font-size:10px; font-weight:200; color:#9F987E;">Vitasprint b12 trinkfl�schchen</a>&nbsp;
2900
+ <a title="Vlies Kompressen" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Vlies+Kompressen" style="font-size:11px; font-weight:300; color:#A69864;">Vlies Kompressen</a>&nbsp;
2901
+ <a title="cuprum metallicum" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=cuprum+metallicum" style="font-size:11px; font-weight:200; color:#A19875;">cuprum metallicum</a>&nbsp;
2902
+ <a title="eucerin hydro protect" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=eucerin+hydro+protect" style="font-size:12px; font-weight:300; color:#A69861;">eucerin hydro protect</a>&nbsp;
2903
+ <a title="garnier neril" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=garnier+neril" style="font-size:14px; font-weight:400; color:#B4972C;">garnier neril</a>&nbsp;
2904
+ <a title="lilly insulin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=lilly+insulin" style="font-size:14px; font-weight:400; color:#B4972A;">lilly insulin</a>&nbsp;
2905
+ <a title="sch�sslersalze dhu" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=sch%FCsslersalze+dhu" style="font-size:14px; font-weight:400; color:#B3972D;">sch�sslersalze dhu</a>&nbsp;
2906
+ </td>
2907
+ </tr>
2908
+ <tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
2909
+ <tr>
2910
+ <td valign="middle" class="boxText">
2911
+ <a href="http://www.suchmaschinenoptimierung-hamburg.de/xtc-modules/german/tag-cloud.html" target="_blank">Was ist es?</a>
2912
+ </td>
2913
+ </tr>
2914
+ </table>
2915
+ </td>
2916
+ </tr>
2917
+ </table>
2918
+ </td>
2919
+ </tr>
2920
+ </table>
2921
+ </td></tr></table>
2922
+ <table width="800" height="5" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2923
+ <td align="center" valign="top"></td></tr></table>
2924
+ <table style="border-top: 2px solid; border-color: #3e7d52;" width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2925
+ <td colspan="5" align="center" valign="top" bgcolor="white" width="800">
2926
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
2927
+ <td align="center" valign="top"></td></tr></table>
2928
+ <table width="800" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><tr>
2929
+ <td colspan="2" align="center" valign="top">
2930
+ <table width="100%" border="0" cellpadding="2" cellspacing="0"><tr>
2931
+ <td class="infoBoxcontent" align="center">
2932
+ <table width="95%" border="0" cellpadding="2" cellspacing="0"><tr>
2933
+ <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>
2934
+ </tr>
2935
+ <tr>
2936
+ <td align="center" valign="top">
2937
+ <a id="link2" href="a.html" target=_top>A</a>
2938
+ <a id="link2" href="b.html" target=_top>B</a>
2939
+ <a id="link2" href="c.html" target=_top>C</a>
2940
+ <a id="link2" href="d.html" target=_top>D</a>
2941
+ <a id="link2" href="e.html" target=_top>E</a>
2942
+ <a id="link2" href="f.html" target=_top>F</a>
2943
+ <a id="link2" href="g.html" target=_top>G</a>
2944
+ <a id="link2" href="h.html" target=_top>H</a>
2945
+ <a id="link2" href="i.html" target=_top>I</a>
2946
+ <a id="link2" href="j.html" target=_top>J</a>
2947
+ <a id="link2" href="k.html" target=_top>K</a>
2948
+ <a id="link2" href="l.html" target=_top>L</a>
2949
+ <a id="link2" href="m.html" target=_top>M</a>
2950
+ <a id="link2" href="n.html" target=_top>N</a>
2951
+ <a id="link2" href="o.html" target=_top>O</a>
2952
+ <a id="link2" href="p.html" target=_top>P</a>
2953
+ <a id="link2" href="q.html" target=_top>Q</a>
2954
+ <a id="link2" href="r.html" target=_top>R</a>
2955
+ <a id="link2" href="s.html" target=_top>S</a>
2956
+ <a id="link2" href="t.html" target=_top>T</a>
2957
+ <a id="link2" href="u.html" target=_top>U</a>
2958
+ <a id="link2" href="v.html" target=_top>V</a>
2959
+ <a id="link2" href="w.html" target=_top>W</a>
2960
+ <a id="link2" href="x.html" target=_top>X</a>
2961
+ <a id="link2" href="y.html" target=_top>Y</a>
2962
+ <a id="link2" href="z.html" target=_top>Z</a>
2963
+ </td></tr>
2964
+ <tr>
2965
+ <td align="center" valign="top">
2966
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-2.html" target=_top>A</a>
2967
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-3.html" target=_top>B</a>
2968
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-4.html" target=_top>C</a>
2969
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-5.html" target=_top>D</a>
2970
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-6.html" target=_top>E</a>
2971
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-7.html" target=_top>F</a>
2972
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-8.html" target=_top>G</a>
2973
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-9.html" target=_top>H</a>
2974
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-10.html" target=_top>I</a>
2975
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-11.html" target=_top>J</a>
2976
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-12.html" target=_top>K</a>
2977
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-13.html" target=_top>L</a>
2978
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-14.html" target=_top>M</a>
2979
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-15.html" target=_top>N</a>
2980
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-16.html" target=_top>O</a>
2981
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-17.html" target=_top>P</a>
2982
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-18.html" target=_top>Q</a>
2983
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-19.html" target=_top>R</a>
2984
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-20.html" target=_top>S</a>
2985
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-21.html" target=_top>T</a>
2986
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-22.html" target=_top>U</a>
2987
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-23.html" target=_top>V</a>
2988
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-24.html" target=_top>W</a>
2989
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-25.html" target=_top>X</a>
2990
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-26.html" target=_top>Y</a>
2991
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-27.html" target=_top>Z</a>
2992
+ <a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-28.html" target=_top>0-9</a>
2993
+ </td></tr></table></td></tr></table></td></tr></table>
2994
+ <table style="border-top: 1px solid; border-color: #3e7d52;" width="520" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><br>
2995
+ <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>
2996
+ </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>
2997
+ </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>
2998
+ </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>
2999
+ </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>