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.
- data/Guide.txt +3 -0
- data/History.txt +5 -0
- data/LICENCE.txt +339 -0
- data/Manifest.txt +430 -0
- data/README +423 -0
- data/README.txt +25 -0
- data/Rakefile +28 -0
- data/bin/admin +71 -0
- data/bin/exportd +44 -0
- data/bin/oddbd +33 -0
- data/data/fulltext/data/dicts/french/fulltext.aff +1057 -0
- data/data/fulltext/data/dicts/french/fulltext.dict +91189 -0
- data/data/fulltext/data/dicts/french/fulltext.stop +135 -0
- data/data/fulltext/data/dicts/german/fulltext.aff +1233 -0
- data/data/fulltext/data/dicts/german/fulltext.dict +287574 -0
- data/data/fulltext/data/dicts/german/fulltext.stop +133 -0
- data/data/fulltext/data/german_compound/README +15 -0
- data/data/fulltext/data/german_compound/compound.pl +63 -0
- data/data/fulltext/data/german_compound/german.stop +20 -0
- data/data/fulltext/data/ispell-german-compound.tar.gz +0 -0
- data/data/fulltext/redist/dict_french/Makefile +12 -0
- data/data/fulltext/redist/dict_french/README.french +1 -0
- data/data/fulltext/redist/dict_french/dict_french.sql.in +7 -0
- data/data/fulltext/redist/dict_french/dict_snowball.c +56 -0
- data/data/fulltext/redist/dict_french/french_stem.c +1222 -0
- data/data/fulltext/redist/dict_french/french_stem.h +16 -0
- data/data/fulltext/redist/dict_french/subinclude.h +2 -0
- data/data/fulltext/redist/dict_german/Makefile +12 -0
- data/data/fulltext/redist/dict_german/README.german +1 -0
- data/data/fulltext/redist/dict_german/dict_german.sql.in +7 -0
- data/data/fulltext/redist/dict_german/dict_snowball.c +56 -0
- data/data/fulltext/redist/dict_german/german_stem.c +527 -0
- data/data/fulltext/redist/dict_german/german_stem.h +16 -0
- data/data/fulltext/redist/dict_german/subinclude.h +1 -0
- data/data/fulltext/redist/french_stem.c +1222 -0
- data/data/fulltext/redist/french_stem.h +16 -0
- data/data/fulltext/redist/german_stem.c +527 -0
- data/data/fulltext/redist/german_stem.h +16 -0
- data/jobs/export_chde_xls +20 -0
- data/jobs/export_csv +20 -0
- data/jobs/export_fachinfo_yaml +20 -0
- data/jobs/export_patinfo_yaml +20 -0
- data/jobs/export_yaml +20 -0
- data/jobs/import_dimdi +15 -0
- data/jobs/import_gkv +19 -0
- data/jobs/import_pharma24 +15 -0
- data/jobs/import_pharmnet +30 -0
- data/jobs/import_whocc +18 -0
- data/lib/fixes/singular.rb +9 -0
- data/lib/fixes/yaml.rb +13 -0
- data/lib/oddb.rb +13 -0
- data/lib/oddb/business/company.rb +18 -0
- data/lib/oddb/business/grant_download.rb +27 -0
- data/lib/oddb/business/invoice.rb +75 -0
- data/lib/oddb/config.rb +112 -0
- data/lib/oddb/currency.rb +6 -0
- data/lib/oddb/drugs.rb +16 -0
- data/lib/oddb/drugs/active_agent.rb +37 -0
- data/lib/oddb/drugs/atc.rb +53 -0
- data/lib/oddb/drugs/composition.rb +41 -0
- data/lib/oddb/drugs/ddd.rb +24 -0
- data/lib/oddb/drugs/dose.rb +107 -0
- data/lib/oddb/drugs/galenic_form.rb +21 -0
- data/lib/oddb/drugs/galenic_group.rb +17 -0
- data/lib/oddb/drugs/package.rb +111 -0
- data/lib/oddb/drugs/part.rb +55 -0
- data/lib/oddb/drugs/product.rb +25 -0
- data/lib/oddb/drugs/sequence.rb +68 -0
- data/lib/oddb/drugs/substance.rb +31 -0
- data/lib/oddb/drugs/substance_group.rb +13 -0
- data/lib/oddb/drugs/unit.rb +12 -0
- data/lib/oddb/export.rb +4 -0
- data/lib/oddb/export/csv.rb +94 -0
- data/lib/oddb/export/l10n_sessions.rb +30 -0
- data/lib/oddb/export/rss.rb +44 -0
- data/lib/oddb/export/server.rb +137 -0
- data/lib/oddb/export/xls.rb +127 -0
- data/lib/oddb/export/yaml.rb +212 -0
- data/lib/oddb/html/state/download.rb +13 -0
- data/lib/oddb/html/state/drugs/admin/package.rb +190 -0
- data/lib/oddb/html/state/drugs/admin/product.rb +56 -0
- data/lib/oddb/html/state/drugs/admin/sequence.rb +253 -0
- data/lib/oddb/html/state/drugs/ajax/explain_ddd_price.rb +19 -0
- data/lib/oddb/html/state/drugs/ajax/explain_price.rb +19 -0
- data/lib/oddb/html/state/drugs/ajax/global.rb +18 -0
- data/lib/oddb/html/state/drugs/ajax/package_infos.rb +19 -0
- data/lib/oddb/html/state/drugs/ajax/remote_infos.rb +19 -0
- data/lib/oddb/html/state/drugs/atc_browser.rb +39 -0
- data/lib/oddb/html/state/drugs/atc_guidelines.rb +21 -0
- data/lib/oddb/html/state/drugs/compare.rb +52 -0
- data/lib/oddb/html/state/drugs/download_export.rb +18 -0
- data/lib/oddb/html/state/drugs/downloads.rb +42 -0
- data/lib/oddb/html/state/drugs/fachinfo.rb +21 -0
- data/lib/oddb/html/state/drugs/feedback.rb +91 -0
- data/lib/oddb/html/state/drugs/global.rb +270 -0
- data/lib/oddb/html/state/drugs/init.rb +18 -0
- data/lib/oddb/html/state/drugs/login.rb +17 -0
- data/lib/oddb/html/state/drugs/package.rb +32 -0
- data/lib/oddb/html/state/drugs/patinfo.rb +21 -0
- data/lib/oddb/html/state/drugs/products.rb +51 -0
- data/lib/oddb/html/state/drugs/result.rb +125 -0
- data/lib/oddb/html/state/global.rb +206 -0
- data/lib/oddb/html/state/global_predefine.rb +17 -0
- data/lib/oddb/html/state/limit.rb +17 -0
- data/lib/oddb/html/state/login.rb +56 -0
- data/lib/oddb/html/state/paypal/checkout.rb +97 -0
- data/lib/oddb/html/state/paypal/collect.rb +19 -0
- data/lib/oddb/html/state/paypal/download.rb +61 -0
- data/lib/oddb/html/state/paypal/redirect.rb +18 -0
- data/lib/oddb/html/state/register_download.rb +24 -0
- data/lib/oddb/html/state/register_export.rb +38 -0
- data/lib/oddb/html/state/register_poweruser.rb +17 -0
- data/lib/oddb/html/state/viral/admin.rb +79 -0
- data/lib/oddb/html/state/viral/poweruser.rb +16 -0
- data/lib/oddb/html/util/annotated_list.rb +39 -0
- data/lib/oddb/html/util/know_it_all.rb +28 -0
- data/lib/oddb/html/util/known_user.rb +55 -0
- data/lib/oddb/html/util/lookandfeel.rb +698 -0
- data/lib/oddb/html/util/need_all_input.rb +29 -0
- data/lib/oddb/html/util/session.rb +84 -0
- data/lib/oddb/html/util/sort.rb +72 -0
- data/lib/oddb/html/util/unsaved_helper.rb +20 -0
- data/lib/oddb/html/util/validator.rb +59 -0
- data/lib/oddb/html/view/ajax/json.rb +22 -0
- data/lib/oddb/html/view/alpha_header.rb +28 -0
- data/lib/oddb/html/view/document.rb +117 -0
- data/lib/oddb/html/view/download.rb +33 -0
- data/lib/oddb/html/view/drugs/admin/package.rb +245 -0
- data/lib/oddb/html/view/drugs/admin/product.rb +104 -0
- data/lib/oddb/html/view/drugs/admin/sequence.rb +305 -0
- data/lib/oddb/html/view/drugs/ajax/explain_ddd_price.rb +87 -0
- data/lib/oddb/html/view/drugs/ajax/explain_price.rb +61 -0
- data/lib/oddb/html/view/drugs/ajax/package_infos.rb +105 -0
- data/lib/oddb/html/view/drugs/ajax/remote_infos.rb +44 -0
- data/lib/oddb/html/view/drugs/atc_browser.rb +68 -0
- data/lib/oddb/html/view/drugs/atc_guidelines.rb +94 -0
- data/lib/oddb/html/view/drugs/compare.rb +95 -0
- data/lib/oddb/html/view/drugs/download_export.rb +28 -0
- data/lib/oddb/html/view/drugs/downloads.rb +128 -0
- data/lib/oddb/html/view/drugs/fachinfo.rb +46 -0
- data/lib/oddb/html/view/drugs/feedback.rb +235 -0
- data/lib/oddb/html/view/drugs/init.rb +51 -0
- data/lib/oddb/html/view/drugs/legend.rb +24 -0
- data/lib/oddb/html/view/drugs/package.rb +403 -0
- data/lib/oddb/html/view/drugs/patinfo.rb +46 -0
- data/lib/oddb/html/view/drugs/products.rb +97 -0
- data/lib/oddb/html/view/drugs/result.rb +296 -0
- data/lib/oddb/html/view/drugs/search.rb +33 -0
- data/lib/oddb/html/view/drugs/template.rb +15 -0
- data/lib/oddb/html/view/foot.rb +52 -0
- data/lib/oddb/html/view/google.rb +23 -0
- data/lib/oddb/html/view/google_ads.rb +40 -0
- data/lib/oddb/html/view/head.rb +78 -0
- data/lib/oddb/html/view/limit.rb +109 -0
- data/lib/oddb/html/view/list.rb +59 -0
- data/lib/oddb/html/view/login.rb +38 -0
- data/lib/oddb/html/view/navigation.rb +67 -0
- data/lib/oddb/html/view/offset_header.rb +35 -0
- data/lib/oddb/html/view/paypal/collect.rb +95 -0
- data/lib/oddb/html/view/paypal/redirect.rb +51 -0
- data/lib/oddb/html/view/paypal/register_form.rb +149 -0
- data/lib/oddb/html/view/register_download.rb +29 -0
- data/lib/oddb/html/view/register_export.rb +29 -0
- data/lib/oddb/html/view/register_poweruser.rb +29 -0
- data/lib/oddb/html/view/rss/feedback.rb +64 -0
- data/lib/oddb/html/view/rss_preview.rb +61 -0
- data/lib/oddb/html/view/search.rb +104 -0
- data/lib/oddb/html/view/snapback.rb +24 -0
- data/lib/oddb/html/view/template.rb +56 -0
- data/lib/oddb/import/dimdi.rb +583 -0
- data/lib/oddb/import/excel.rb +45 -0
- data/lib/oddb/import/gkv.rb +463 -0
- data/lib/oddb/import/importer.rb +36 -0
- data/lib/oddb/import/pharma24.rb +211 -0
- data/lib/oddb/import/pharmnet.rb +1186 -0
- data/lib/oddb/import/rtf.rb +409 -0
- data/lib/oddb/import/whocc.rb +148 -0
- data/lib/oddb/import/xml.rb +15 -0
- data/lib/oddb/model.rb +179 -0
- data/lib/oddb/persistence.rb +22 -0
- data/lib/oddb/persistence/odba.rb +32 -0
- data/lib/oddb/persistence/odba/business/company.rb +13 -0
- data/lib/oddb/persistence/odba/business/grant_download.rb +14 -0
- data/lib/oddb/persistence/odba/business/invoice.rb +15 -0
- data/lib/oddb/persistence/odba/drugs/atc.rb +15 -0
- data/lib/oddb/persistence/odba/drugs/galenic_form.rb +18 -0
- data/lib/oddb/persistence/odba/drugs/galenic_group.rb +13 -0
- data/lib/oddb/persistence/odba/drugs/package.rb +25 -0
- data/lib/oddb/persistence/odba/drugs/product.rb +13 -0
- data/lib/oddb/persistence/odba/drugs/sequence.rb +21 -0
- data/lib/oddb/persistence/odba/drugs/substance.rb +21 -0
- data/lib/oddb/persistence/odba/drugs/substance_group.rb +13 -0
- data/lib/oddb/persistence/odba/drugs/unit.rb +13 -0
- data/lib/oddb/persistence/odba/export.rb +26 -0
- data/lib/oddb/persistence/odba/model.rb +68 -0
- data/lib/oddb/persistence/odba/text/document.rb +11 -0
- data/lib/oddb/persistence/odba/util/code.rb +11 -0
- data/lib/oddb/persistence/odba/util/m10l_document.rb +13 -0
- data/lib/oddb/persistence/og.rb +16 -0
- data/lib/oddb/persistence/og/drugs/composition.rb +14 -0
- data/lib/oddb/persistence/og/drugs/product.rb +14 -0
- data/lib/oddb/persistence/og/drugs/sequence.rb +15 -0
- data/lib/oddb/persistence/og/model.rb +25 -0
- data/lib/oddb/persistence/og/util/multilingual.rb +13 -0
- data/lib/oddb/redist/rtf_tools/reader.rb +139 -0
- data/lib/oddb/remote/business/company.rb +17 -0
- data/lib/oddb/remote/drugs/active_agent.rb +27 -0
- data/lib/oddb/remote/drugs/atc.rb +31 -0
- data/lib/oddb/remote/drugs/dose.rb +8 -0
- data/lib/oddb/remote/drugs/galenic_form.rb +24 -0
- data/lib/oddb/remote/drugs/package.rb +128 -0
- data/lib/oddb/remote/drugs/part.rb +30 -0
- data/lib/oddb/remote/drugs/substance.rb +20 -0
- data/lib/oddb/remote/drugs/unit.rb +20 -0
- data/lib/oddb/remote/object.rb +36 -0
- data/lib/oddb/text/chapter.rb +23 -0
- data/lib/oddb/text/document.rb +42 -0
- data/lib/oddb/text/format.rb +37 -0
- data/lib/oddb/text/paragraph.rb +53 -0
- data/lib/oddb/text/picture.rb +89 -0
- data/lib/oddb/text/table.rb +68 -0
- data/lib/oddb/util.rb +9 -0
- data/lib/oddb/util/annotated_list.rb +37 -0
- data/lib/oddb/util/code.rb +69 -0
- data/lib/oddb/util/comparison.rb +36 -0
- data/lib/oddb/util/download.rb +17 -0
- data/lib/oddb/util/exporter.rb +8 -0
- data/lib/oddb/util/feedback.rb +23 -0
- data/lib/oddb/util/ipn.rb +53 -0
- data/lib/oddb/util/job.rb +23 -0
- data/lib/oddb/util/logger.rb +20 -0
- data/lib/oddb/util/m10l_document.rb +41 -0
- data/lib/oddb/util/mail.rb +87 -0
- data/lib/oddb/util/money.rb +64 -0
- data/lib/oddb/util/multilingual.rb +70 -0
- data/lib/oddb/util/quanty.rb +3 -0
- data/lib/oddb/util/quanty/fact.rb +242 -0
- data/lib/oddb/util/quanty/main.rb +164 -0
- data/lib/oddb/util/quanty/parse.rb +872 -0
- data/lib/oddb/util/quanty/units.dump +0 -0
- data/lib/oddb/util/server.rb +150 -0
- data/lib/oddb/util/smtp_tls.rb +58 -0
- data/lib/oddb/util/updater.rb +161 -0
- data/lib/oddb/util/ydim.rb +110 -0
- data/lib/oddb/util/yus.rb +46 -0
- data/test/business/test_company.rb +29 -0
- data/test/business/test_grant_download.rb +29 -0
- data/test/drugs/test_active_agent.rb +53 -0
- data/test/drugs/test_atc.rb +54 -0
- data/test/drugs/test_composition.rb +88 -0
- data/test/drugs/test_ddd.rb +22 -0
- data/test/drugs/test_dose.rb +189 -0
- data/test/drugs/test_galenic_form.rb +41 -0
- data/test/drugs/test_package.rb +172 -0
- data/test/drugs/test_part.rb +32 -0
- data/test/drugs/test_product.rb +31 -0
- data/test/drugs/test_sequence.rb +140 -0
- data/test/drugs/test_substance.rb +51 -0
- data/test/drugs/test_substance_group.rb +27 -0
- data/test/export/test_rss.rb +86 -0
- data/test/export/test_server.rb +163 -0
- data/test/export/test_xls.rb +146 -0
- data/test/export/test_yaml.rb +120 -0
- data/test/import/data/csv/products.csv +11 -0
- data/test/import/data/html/dimdi_index.html +400 -0
- data/test/import/data/html/gkv/Befreiungsliste_Arzneimittel_Versicherte.gkvnet +508 -0
- data/test/import/data/html/pharma24/1337397.html +754 -0
- data/test/import/data/html/pharma24/842756.html +570 -0
- data/test/import/data/html/pharma24/ac-page-10.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-11.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-12.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-13.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-14.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-15.html +3011 -0
- data/test/import/data/html/pharma24/ac-page-16.html +3050 -0
- data/test/import/data/html/pharma24/ac-page-17.html +3285 -0
- data/test/import/data/html/pharma24/ac-page-18.html +3109 -0
- data/test/import/data/html/pharma24/ac-page-19.html +3126 -0
- data/test/import/data/html/pharma24/ac-page-2.html +3005 -0
- data/test/import/data/html/pharma24/ac-page-20.html +3007 -0
- data/test/import/data/html/pharma24/ac-page-21.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-22.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-23.html +3055 -0
- data/test/import/data/html/pharma24/ac-page-24.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-25.html +3004 -0
- data/test/import/data/html/pharma24/ac-page-26.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-27.html +3167 -0
- data/test/import/data/html/pharma24/ac-page-28.html +3236 -0
- data/test/import/data/html/pharma24/ac-page-29.html +3110 -0
- data/test/import/data/html/pharma24/ac-page-3.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-30.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-31.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-32.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-33.html +3001 -0
- data/test/import/data/html/pharma24/ac-page-34.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-35.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-36.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-37.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-38.html +3003 -0
- data/test/import/data/html/pharma24/ac-page-39.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-4.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-40.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-41.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-42.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-43.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-44.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-45.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-46.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-47.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-48.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-49.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-5.html +3168 -0
- data/test/import/data/html/pharma24/ac-page-50.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-51.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-52.html +3003 -0
- data/test/import/data/html/pharma24/ac-page-53.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-54.html +3095 -0
- data/test/import/data/html/pharma24/ac-page-55.html +3041 -0
- data/test/import/data/html/pharma24/ac-page-56.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-57.html +3001 -0
- data/test/import/data/html/pharma24/ac-page-58.html +3001 -0
- data/test/import/data/html/pharma24/ac-page-59.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-6.html +3072 -0
- data/test/import/data/html/pharma24/ac-page-60.html +3001 -0
- data/test/import/data/html/pharma24/ac-page-61.html +3005 -0
- data/test/import/data/html/pharma24/ac-page-62.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-63.html +3007 -0
- data/test/import/data/html/pharma24/ac-page-64.html +3007 -0
- data/test/import/data/html/pharma24/ac-page-65.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-66.html +3011 -0
- data/test/import/data/html/pharma24/ac-page-67.html +3026 -0
- data/test/import/data/html/pharma24/ac-page-68.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-69.html +3010 -0
- data/test/import/data/html/pharma24/ac-page-7.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-70.html +3192 -0
- data/test/import/data/html/pharma24/ac-page-71.html +3133 -0
- data/test/import/data/html/pharma24/ac-page-72.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-73.html +3227 -0
- data/test/import/data/html/pharma24/ac-page-74.html +3241 -0
- data/test/import/data/html/pharma24/ac-page-75.html +3227 -0
- data/test/import/data/html/pharma24/ac-page-76.html +3244 -0
- data/test/import/data/html/pharma24/ac-page-77.html +1164 -0
- data/test/import/data/html/pharma24/ac-page-8.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-9.html +2999 -0
- data/test/import/data/html/pharma24/ac.html +2999 -0
- data/test/import/data/html/pharmnet/display.html +662 -0
- data/test/import/data/html/pharmnet/display1.html +625 -0
- data/test/import/data/html/pharmnet/display2.html +625 -0
- data/test/import/data/html/pharmnet/display3.html +625 -0
- data/test/import/data/html/pharmnet/display_tramal.html +634 -0
- data/test/import/data/html/pharmnet/empty_result.html +395 -0
- data/test/import/data/html/pharmnet/gate.html +246 -0
- data/test/import/data/html/pharmnet/index.html +258 -0
- data/test/import/data/html/pharmnet/paged_result_1.html +401 -0
- data/test/import/data/html/pharmnet/paged_result_2.html +401 -0
- data/test/import/data/html/pharmnet/result.html +401 -0
- data/test/import/data/html/pharmnet/search.html +865 -0
- data/test/import/data/html/pharmnet/search_filtered.html +182 -0
- data/test/import/data/html/whocc/A.html +56 -0
- data/test/import/data/html/whocc/A03.html +48 -0
- data/test/import/data/html/whocc/A03AB.html +48 -0
- data/test/import/data/html/whocc/A06AA.html +47 -0
- data/test/import/data/html/whocc/C03.html +47 -0
- data/test/import/data/html/whocc/login.html +77 -0
- data/test/import/data/mail/csv.mail +81 -0
- data/test/import/data/rtf/pharmnet/aarane.pi.rtf +648 -0
- data/test/import/data/rtf/pharmnet/ace_hemmer_ratio.pi.rtf +324 -0
- data/test/import/data/rtf/pharmnet/ace_hemmer_ratio.rtf +4816 -0
- data/test/import/data/rtf/pharmnet/acemetacin.pi.rtf +388 -0
- data/test/import/data/rtf/pharmnet/acemit.pi.rtf +240 -0
- data/test/import/data/rtf/pharmnet/acerbon.pi.rtf +1257 -0
- data/test/import/data/rtf/pharmnet/acetylcystein.pi.rtf +323 -0
- data/test/import/data/rtf/pharmnet/aciclo.pi.rtf +287 -0
- data/test/import/data/rtf/pharmnet/aciclovir.pi.rtf +236 -0
- data/test/import/data/rtf/pharmnet/actrapid.pi.rtf +322 -0
- data/test/import/data/rtf/pharmnet/amlodipin.pi.rtf +452 -0
- data/test/import/data/rtf/pharmnet/amlodipin.rtf +473 -0
- data/test/import/data/rtf/pharmnet/aspirin.pi.rtf +313 -0
- data/test/import/data/rtf/pharmnet/aspirin.rtf +781 -0
- data/test/import/data/rtf/pharmnet/baymycard.pi.rtf +447 -0
- data/test/import/data/rtf/pharmnet/omeprazol.pi.rtf +510 -0
- data/test/import/data/rtf/pharmnet/omeprazol.rtf +9216 -0
- data/test/import/data/rtf/pharmnet/paroxetin.pi.rtf +678 -0
- data/test/import/data/rtf/pharmnet/selegilin.pi.rtf +312 -0
- data/test/import/data/rtf/pharmnet/selegilin.rtf +683 -0
- data/test/import/data/rtf/pharmnet/valium.pi.rtf +387 -0
- data/test/import/data/txt/gkv/gkv_p1.txt +17 -0
- data/test/import/data/xls/darform_010706.xls +0 -0
- data/test/import/data/xls/fb010706.xls +0 -0
- data/test/import/data/xls/liste_zuzahlungsbefreite_arzneimittel_suchfunktion.xls +0 -0
- data/test/import/data/xls/wirkkurz_010406.xls +0 -0
- data/test/import/data/xml/ATC_2006.xml +47 -0
- data/test/import/data/xml/ATC_2006_ddd.xml +35 -0
- data/test/import/test_dimdi.rb +323 -0
- data/test/import/test_excel.rb +31 -0
- data/test/import/test_gkv.rb +260 -0
- data/test/import/test_pharma24.rb +112 -0
- data/test/import/test_pharmnet.rb +980 -0
- data/test/import/test_rtf.rb +37 -0
- data/test/import/test_whocc.rb +314 -0
- data/test/remote/drugs/test_active_agent.rb +36 -0
- data/test/selenium/selenium-server.jar +0 -0
- data/test/selenium/test_atc_browser.rb +121 -0
- data/test/selenium/test_atc_guidelines.rb +95 -0
- data/test/selenium/test_collect.rb +137 -0
- data/test/selenium/test_compare.rb +294 -0
- data/test/selenium/test_fachinfo.rb +128 -0
- data/test/selenium/test_feedback.rb +192 -0
- data/test/selenium/test_init.rb +64 -0
- data/test/selenium/test_limit.rb +304 -0
- data/test/selenium/test_login.rb +67 -0
- data/test/selenium/test_package.rb +516 -0
- data/test/selenium/test_patinfo.rb +128 -0
- data/test/selenium/test_product.rb +80 -0
- data/test/selenium/test_products.rb +141 -0
- data/test/selenium/test_search.rb +933 -0
- data/test/selenium/test_sequence.rb +513 -0
- data/test/selenium/unit.rb +190 -0
- data/test/stub/http_server.rb +144 -0
- data/test/stub/model.rb +173 -0
- data/test/suite.rb +15 -0
- data/test/test_model.rb +83 -0
- data/test/util/test_code.rb +74 -0
- data/test/util/test_ipn.rb +117 -0
- data/test/util/test_mail.rb +85 -0
- data/test/util/test_multilingual.rb +97 -0
- data/test/util/test_server.rb +94 -0
- data/test/util/test_updater.rb +130 -0
- data/test/util/test_ydim.rb +115 -0
- data/test/util/test_yus.rb +79 -0
- metadata +568 -0
|
@@ -0,0 +1,3050 @@
|
|
|
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>  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> "Dies ist keine vollst�ndige �bersicht"</b><br /><a href="advanced_search.php"><b>  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 an)
|
|
245
|
+
var Suche = newvalue.indexOf(" ");
|
|
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> » <a href="http://www.apotheke-online-internet.de/a.html" class="headerNavigation2">A</a> » <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 </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"> </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 Übertragung Ihrer persönlichen Daten durch SSL Verschlü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"> </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: </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"> <br />
|
|
530
|
+
</td>
|
|
531
|
+
<td width="5"></td>
|
|
532
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Cholesterol Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p3813471_accutrend-cholesterol-teststreifen.html">ACCUTREND Cholesterol Teststreifen</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> 43,85 EUR </strong><br />
|
|
541
|
+
</td>
|
|
542
|
+
</tr>
|
|
543
|
+
<tr>
|
|
544
|
+
<td align="right" class="main">
|
|
545
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
546
|
+
</td>
|
|
547
|
+
</tr>
|
|
548
|
+
</table>
|
|
549
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
550
|
+
<tr height="15">
|
|
551
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
552
|
+
</td>
|
|
553
|
+
<td align="left" valign="top" height="15">
|
|
554
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
555
|
+
Rezeptfrei</font> </font></a>
|
|
556
|
+
</td>
|
|
557
|
+
</tr>
|
|
558
|
+
<tr height="15">
|
|
559
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
560
|
+
</td>
|
|
561
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
562
|
+
25 St Teststreifen
|
|
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="ACCUTREND Cholesterol Teststreifen von ACTIPART GMBH" href="advanced_search_result.php?keywords=ACTIPART GMBH">ACTIPART 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/3813471/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Cholesterol Teststreifen' bestellen" title=" 1 x 'ACCUTREND Cholesterol Teststreifen' 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"> <a href="http://www.apotheke-online-internet.de/a/ac/p4653182_accutrend-cholesterol-teststreifen.html"><img src="images/product_images/thumbnail_images/4653182.gif" alt="ACCUTREND Cholesterol Teststreifen" /></a> <br />
|
|
604
|
+
</td>
|
|
605
|
+
<td width="5"></td>
|
|
606
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Cholesterol Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p4653182_accutrend-cholesterol-teststreifen.html">ACCUTREND Cholesterol Teststreifen</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> 51,75 EUR </strong><br />
|
|
615
|
+
</td>
|
|
616
|
+
</tr>
|
|
617
|
+
<tr>
|
|
618
|
+
<td align="right" class="main">
|
|
619
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
620
|
+
</td>
|
|
621
|
+
</tr>
|
|
622
|
+
</table>
|
|
623
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
624
|
+
<tr height="15">
|
|
625
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
626
|
+
</td>
|
|
627
|
+
<td align="left" valign="top" height="15">
|
|
628
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
629
|
+
Rezeptfrei</font> </font></a>
|
|
630
|
+
</td>
|
|
631
|
+
</tr>
|
|
632
|
+
<tr height="15">
|
|
633
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
634
|
+
</td>
|
|
635
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
636
|
+
25 St Teststreifen
|
|
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="ACCUTREND Cholesterol Teststreifen von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS GMBH</a>
|
|
644
|
+
</td>
|
|
645
|
+
</tr>
|
|
646
|
+
</table>
|
|
647
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
648
|
+
<tr>
|
|
649
|
+
<td>
|
|
650
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
651
|
+
<tr>
|
|
652
|
+
<td>
|
|
653
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
654
|
+
<tr>
|
|
655
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
656
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
657
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
658
|
+
</tr>
|
|
659
|
+
</table>
|
|
660
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
661
|
+
<tr>
|
|
662
|
+
<td><div align="right">
|
|
663
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4653182/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Cholesterol Teststreifen' bestellen" title=" 1 x 'ACCUTREND Cholesterol Teststreifen' 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"> <br />
|
|
678
|
+
</td>
|
|
679
|
+
<td width="5"></td>
|
|
680
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Control CH 1 Loesung" href="http://www.apotheke-online-internet.de/a/ac/p4653147_accutrend-control-ch-1-loesung.html">ACCUTREND Control CH 1 Loesung</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> 12,20 EUR </strong><br />
|
|
689
|
+
</td>
|
|
690
|
+
</tr>
|
|
691
|
+
<tr>
|
|
692
|
+
<td align="right" class="main">
|
|
693
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
694
|
+
</td>
|
|
695
|
+
</tr>
|
|
696
|
+
</table>
|
|
697
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
698
|
+
<tr height="15">
|
|
699
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
700
|
+
</td>
|
|
701
|
+
<td align="left" valign="top" height="15">
|
|
702
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
703
|
+
Rezeptfrei</font> </font></a>
|
|
704
|
+
</td>
|
|
705
|
+
</tr>
|
|
706
|
+
<tr height="15">
|
|
707
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
708
|
+
</td>
|
|
709
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
710
|
+
1X1.5 ml L�sung
|
|
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="ACCUTREND Control CH 1 Loesung von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS 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/status1.gif" alt="Sofort" /></td>
|
|
731
|
+
<td valign="left" class="main" width="200">Sofort</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/4653147/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Control CH 1 Loesung' bestellen" title=" 1 x 'ACCUTREND Control CH 1 Loesung' 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"> <a href="http://www.apotheke-online-internet.de/a/ac/p111685_accutrend-control-glucose-loesung.html"><img src="images/product_images/thumbnail_images/0111685.gif" alt="ACCUTREND Control Glucose Loesung" /></a> <br />
|
|
752
|
+
</td>
|
|
753
|
+
<td width="5"></td>
|
|
754
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Control Glucose Loesung" href="http://www.apotheke-online-internet.de/a/ac/p111685_accutrend-control-glucose-loesung.html">ACCUTREND Control Glucose Loesung</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> 6,37 EUR </strong><br />
|
|
763
|
+
</td>
|
|
764
|
+
</tr>
|
|
765
|
+
<tr>
|
|
766
|
+
<td align="right" class="main">
|
|
767
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
768
|
+
</td>
|
|
769
|
+
</tr>
|
|
770
|
+
</table>
|
|
771
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
772
|
+
<tr height="15">
|
|
773
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
774
|
+
</td>
|
|
775
|
+
<td align="left" valign="top" height="15">
|
|
776
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
777
|
+
Rezeptfrei</font> </font></a>
|
|
778
|
+
</td>
|
|
779
|
+
</tr>
|
|
780
|
+
<tr height="15">
|
|
781
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
782
|
+
</td>
|
|
783
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
784
|
+
1X4 ml L�sung
|
|
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="ACCUTREND Control Glucose Loesung von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS GMBH</a>
|
|
792
|
+
</td>
|
|
793
|
+
</tr>
|
|
794
|
+
</table>
|
|
795
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
796
|
+
<tr>
|
|
797
|
+
<td>
|
|
798
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
799
|
+
<tr>
|
|
800
|
+
<td>
|
|
801
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
802
|
+
<tr>
|
|
803
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
804
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
805
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
806
|
+
</tr>
|
|
807
|
+
</table>
|
|
808
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
809
|
+
<tr>
|
|
810
|
+
<td><div align="right">
|
|
811
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/111685/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Control Glucose Loesung' bestellen" title=" 1 x 'ACCUTREND Control Glucose Loesung' 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"> <a href="http://www.apotheke-online-internet.de/diabetiker-bedarf/blutzuckermessgeraete/p4653101_accutrend-gc-geraet-mg-dl.html"><img src="images/product_images/thumbnail_images/4653101.gif" alt="ACCUTREND GC Geraet mg-dl" /></a> <br />
|
|
826
|
+
</td>
|
|
827
|
+
<td width="5"></td>
|
|
828
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND GC Geraet mg-dl" href="http://www.apotheke-online-internet.de/diabetiker-bedarf/blutzuckermessgeraete/p4653101_accutrend-gc-geraet-mg-dl.html">ACCUTREND GC Geraet mg-dl</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> 110,65 EUR </strong><br />
|
|
837
|
+
</td>
|
|
838
|
+
</tr>
|
|
839
|
+
<tr>
|
|
840
|
+
<td align="right" class="main">
|
|
841
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
842
|
+
</td>
|
|
843
|
+
</tr>
|
|
844
|
+
</table>
|
|
845
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
846
|
+
<tr height="15">
|
|
847
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
848
|
+
</td>
|
|
849
|
+
<td align="left" valign="top" height="15">
|
|
850
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
851
|
+
Rezeptfrei</font> </font></a>
|
|
852
|
+
</td>
|
|
853
|
+
</tr>
|
|
854
|
+
<tr height="15">
|
|
855
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
856
|
+
</td>
|
|
857
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
858
|
+
1 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="ACCUTREND GC Geraet mg-dl von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS 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/4653101/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND GC Geraet mg-dl' bestellen" title=" 1 x 'ACCUTREND GC Geraet mg-dl' 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"> <a href="http://www.apotheke-online-internet.de/a/ac/p4653118_accutrend-gc-geraet-mmol-l.html"><img src="images/product_images/thumbnail_images/4653118.gif" alt="ACCUTREND GC Geraet mmol-l" /></a> <br />
|
|
900
|
+
</td>
|
|
901
|
+
<td width="5"></td>
|
|
902
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND GC Geraet mmol-l" href="http://www.apotheke-online-internet.de/a/ac/p4653118_accutrend-gc-geraet-mmol-l.html">ACCUTREND GC Geraet mmol-l</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> 110,65 EUR </strong><br />
|
|
911
|
+
</td>
|
|
912
|
+
</tr>
|
|
913
|
+
<tr>
|
|
914
|
+
<td align="right" class="main">
|
|
915
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
916
|
+
</td>
|
|
917
|
+
</tr>
|
|
918
|
+
</table>
|
|
919
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
920
|
+
<tr height="15">
|
|
921
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
922
|
+
</td>
|
|
923
|
+
<td align="left" valign="top" height="15">
|
|
924
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
925
|
+
Rezeptfrei</font> </font></a>
|
|
926
|
+
</td>
|
|
927
|
+
</tr>
|
|
928
|
+
<tr height="15">
|
|
929
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
930
|
+
</td>
|
|
931
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
932
|
+
1 St
|
|
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="ACCUTREND GC Geraet mmol-l von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS 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/4653118/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND GC Geraet mmol-l' bestellen" title=" 1 x 'ACCUTREND GC Geraet mmol-l' 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"> <a href="http://www.apotheke-online-internet.de/a/ac/p4749143_accutrend-gc-startset-mg-dl.html"><img src="images/product_images/thumbnail_images/4749143.gif" alt="ACCUTREND GC Startset mg-dl" /></a> <br />
|
|
974
|
+
</td>
|
|
975
|
+
<td width="5"></td>
|
|
976
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND GC Startset mg-dl" href="http://www.apotheke-online-internet.de/a/ac/p4749143_accutrend-gc-startset-mg-dl.html">ACCUTREND GC Startset mg-dl</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> 123,21 EUR </strong><br />
|
|
985
|
+
</td>
|
|
986
|
+
</tr>
|
|
987
|
+
<tr>
|
|
988
|
+
<td align="right" class="main">
|
|
989
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
990
|
+
</td>
|
|
991
|
+
</tr>
|
|
992
|
+
</table>
|
|
993
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
994
|
+
<tr height="15">
|
|
995
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
996
|
+
</td>
|
|
997
|
+
<td align="left" valign="top" height="15">
|
|
998
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
999
|
+
Rezeptfrei</font> </font></a>
|
|
1000
|
+
</td>
|
|
1001
|
+
</tr>
|
|
1002
|
+
<tr height="15">
|
|
1003
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
1004
|
+
</td>
|
|
1005
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1006
|
+
1 St
|
|
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="ACCUTREND GC Startset mg-dl von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS 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/4749143/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND GC Startset mg-dl' bestellen" title=" 1 x 'ACCUTREND GC Startset mg-dl' 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"> <br />
|
|
1048
|
+
</td>
|
|
1049
|
+
<td width="5"></td>
|
|
1050
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Glucose Import Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p3485647_accutrend-glucose-import-teststreifen.html">ACCUTREND Glucose Import Teststreifen</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> 24,86 EUR </strong><br />
|
|
1059
|
+
</td>
|
|
1060
|
+
</tr>
|
|
1061
|
+
<tr>
|
|
1062
|
+
<td align="right" class="main">
|
|
1063
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
1064
|
+
</td>
|
|
1065
|
+
</tr>
|
|
1066
|
+
</table>
|
|
1067
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1068
|
+
<tr height="15">
|
|
1069
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
1070
|
+
</td>
|
|
1071
|
+
<td align="left" valign="top" height="15">
|
|
1072
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
1073
|
+
Rezeptfrei</font> </font></a>
|
|
1074
|
+
</td>
|
|
1075
|
+
</tr>
|
|
1076
|
+
<tr height="15">
|
|
1077
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
1078
|
+
</td>
|
|
1079
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1080
|
+
50 St Teststreifen
|
|
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="ACCUTREND Glucose Import Teststreifen von ACTIPART GMBH" href="advanced_search_result.php?keywords=ACTIPART GMBH">ACTIPART 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/3485647/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Glucose Import Teststreifen' bestellen" title=" 1 x 'ACCUTREND Glucose Import Teststreifen' 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"> <br />
|
|
1122
|
+
</td>
|
|
1123
|
+
<td width="5"></td>
|
|
1124
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Glucose Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p14976_accutrend-glucose-teststreifen.html">ACCUTREND Glucose Teststreifen</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> 31,13 EUR </strong><br />
|
|
1133
|
+
</td>
|
|
1134
|
+
</tr>
|
|
1135
|
+
<tr>
|
|
1136
|
+
<td align="right" class="main">
|
|
1137
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
1138
|
+
</td>
|
|
1139
|
+
</tr>
|
|
1140
|
+
</table>
|
|
1141
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1142
|
+
<tr height="15">
|
|
1143
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
1144
|
+
</td>
|
|
1145
|
+
<td align="left" valign="top" height="15">
|
|
1146
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
1147
|
+
Rezeptfrei</font> </font></a>
|
|
1148
|
+
</td>
|
|
1149
|
+
</tr>
|
|
1150
|
+
<tr height="15">
|
|
1151
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
1152
|
+
</td>
|
|
1153
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1154
|
+
50 St Teststreifen
|
|
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="ACCUTREND Glucose Teststreifen von EMRA-MED ARZNEIM.GMBH" href="advanced_search_result.php?keywords=EMRA-MED ARZNEIM.GMBH">EMRA-MED ARZNEIM.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/status1.gif" alt="Sofort" /></td>
|
|
1175
|
+
<td valign="left" class="main" width="200">Sofort</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/14976/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Glucose Teststreifen' 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"> <br />
|
|
1196
|
+
</td>
|
|
1197
|
+
<td width="5"></td>
|
|
1198
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Glucose Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p349429_accutrend-glucose-teststreifen.html">ACCUTREND Glucose Teststreifen</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> 25,37 EUR </strong><br />
|
|
1207
|
+
</td>
|
|
1208
|
+
</tr>
|
|
1209
|
+
<tr>
|
|
1210
|
+
<td align="right" class="main">
|
|
1211
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
1212
|
+
</td>
|
|
1213
|
+
</tr>
|
|
1214
|
+
</table>
|
|
1215
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1216
|
+
<tr height="15">
|
|
1217
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
1218
|
+
</td>
|
|
1219
|
+
<td align="left" valign="top" height="15">
|
|
1220
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
1221
|
+
Rezeptfrei</font> </font></a>
|
|
1222
|
+
</td>
|
|
1223
|
+
</tr>
|
|
1224
|
+
<tr height="15">
|
|
1225
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
1226
|
+
</td>
|
|
1227
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1228
|
+
50 St Teststreifen
|
|
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="ACCUTREND Glucose Teststreifen von DIAPRAX GMBH" href="advanced_search_result.php?keywords=DIAPRAX GMBH">DIAPRAX 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/349429/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Glucose Teststreifen' 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"> <br />
|
|
1270
|
+
</td>
|
|
1271
|
+
<td width="5"></td>
|
|
1272
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Glucose Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p1227220_accutrend-glucose-teststreifen.html">ACCUTREND Glucose Teststreifen</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> 25,09 EUR </strong><br />
|
|
1281
|
+
</td>
|
|
1282
|
+
</tr>
|
|
1283
|
+
<tr>
|
|
1284
|
+
<td align="right" class="main">
|
|
1285
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
1286
|
+
</td>
|
|
1287
|
+
</tr>
|
|
1288
|
+
</table>
|
|
1289
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1290
|
+
<tr height="15">
|
|
1291
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
1292
|
+
</td>
|
|
1293
|
+
<td align="left" valign="top" height="15">
|
|
1294
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
1295
|
+
Rezeptfrei</font> </font></a>
|
|
1296
|
+
</td>
|
|
1297
|
+
</tr>
|
|
1298
|
+
<tr height="15">
|
|
1299
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
1300
|
+
</td>
|
|
1301
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1302
|
+
50 St Teststreifen
|
|
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="ACCUTREND Glucose Teststreifen von BESTPHAGO GMBH" href="advanced_search_result.php?keywords=BESTPHAGO GMBH">BESTPHAGO 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/1227220/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Glucose Teststreifen' 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"> <a href="http://www.apotheke-online-internet.de/diabetiker-bedarf/blutzucker-teststreifen/p4337972_accutrend-glucose-teststreifen.html"><img src="images/product_images/thumbnail_images/4337972.gif" alt="ACCUTREND Glucose Teststreifen" /></a> <br />
|
|
1344
|
+
</td>
|
|
1345
|
+
<td width="5"></td>
|
|
1346
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Glucose Teststreifen" href="http://www.apotheke-online-internet.de/diabetiker-bedarf/blutzucker-teststreifen/p4337972_accutrend-glucose-teststreifen.html">ACCUTREND Glucose Teststreifen</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> 32,86 EUR </strong><br />
|
|
1355
|
+
</td>
|
|
1356
|
+
</tr>
|
|
1357
|
+
<tr>
|
|
1358
|
+
<td align="right" class="main">
|
|
1359
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
1360
|
+
</td>
|
|
1361
|
+
</tr>
|
|
1362
|
+
</table>
|
|
1363
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1364
|
+
<tr height="15">
|
|
1365
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
1366
|
+
</td>
|
|
1367
|
+
<td align="left" valign="top" height="15">
|
|
1368
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
1369
|
+
Rezeptfrei</font> </font></a>
|
|
1370
|
+
</td>
|
|
1371
|
+
</tr>
|
|
1372
|
+
<tr height="15">
|
|
1373
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
1374
|
+
</td>
|
|
1375
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1376
|
+
50 St Teststreifen
|
|
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="ACCUTREND Glucose Teststreifen von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS 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/status1.gif" alt="Sofort" /></td>
|
|
1397
|
+
<td valign="left" class="main" width="200">Sofort</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/4337972/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Glucose Teststreifen' 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"> <br />
|
|
1418
|
+
</td>
|
|
1419
|
+
<td width="5"></td>
|
|
1420
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Glucose Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p4871223_accutrend-glucose-teststreifen.html">ACCUTREND Glucose Teststreifen</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> 31,13 EUR </strong><br />
|
|
1429
|
+
</td>
|
|
1430
|
+
</tr>
|
|
1431
|
+
<tr>
|
|
1432
|
+
<td align="right" class="main">
|
|
1433
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
1434
|
+
</td>
|
|
1435
|
+
</tr>
|
|
1436
|
+
</table>
|
|
1437
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1438
|
+
<tr height="15">
|
|
1439
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
1440
|
+
</td>
|
|
1441
|
+
<td align="left" valign="top" height="15">
|
|
1442
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
1443
|
+
Rezeptfrei</font> </font></a>
|
|
1444
|
+
</td>
|
|
1445
|
+
</tr>
|
|
1446
|
+
<tr height="15">
|
|
1447
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
1448
|
+
</td>
|
|
1449
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1450
|
+
50 St Teststreifen
|
|
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="ACCUTREND Glucose Teststreifen von EURIM PHARM ARZNEIM." href="advanced_search_result.php?keywords=EURIM PHARM ARZNEIM.">EURIM PHARM ARZNEIM.</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/4871223/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Glucose Teststreifen' 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"> <a href="http://www.apotheke-online-internet.de/diabetiker-bedarf/blutzucker-teststreifen/p4954475_accutrend-glucose-teststreifen.html"><img src="images/product_images/thumbnail_images/4954475.gif" alt="ACCUTREND Glucose Teststreifen" /></a> <br />
|
|
1492
|
+
</td>
|
|
1493
|
+
<td width="5"></td>
|
|
1494
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Glucose Teststreifen" href="http://www.apotheke-online-internet.de/diabetiker-bedarf/blutzucker-teststreifen/p4954475_accutrend-glucose-teststreifen.html">ACCUTREND Glucose Teststreifen</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> 32,73 EUR </strong><br />
|
|
1503
|
+
</td>
|
|
1504
|
+
</tr>
|
|
1505
|
+
<tr>
|
|
1506
|
+
<td align="right" class="main">
|
|
1507
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
1508
|
+
</td>
|
|
1509
|
+
</tr>
|
|
1510
|
+
</table>
|
|
1511
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1512
|
+
<tr height="15">
|
|
1513
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
1514
|
+
</td>
|
|
1515
|
+
<td align="left" valign="top" height="15">
|
|
1516
|
+
<font size="1" 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
|
+
50 St Teststreifen
|
|
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="ACCUTREND Glucose Teststreifen von KOHLPHARMA GMBH" href="advanced_search_result.php?keywords=KOHLPHARMA GMBH">KOHLPHARMA 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/status1.gif" alt="Sofort" /></td>
|
|
1545
|
+
<td valign="left" class="main" width="200">Sofort</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/4954475/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Glucose Teststreifen' 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"> <br />
|
|
1566
|
+
</td>
|
|
1567
|
+
<td width="5"></td>
|
|
1568
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Lactate Geraet" href="http://www.apotheke-online-internet.de/a/ac/p1055894_accutrend-lactate-geraet.html">ACCUTREND Lactate Geraet</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> 395,10 EUR </strong><br />
|
|
1577
|
+
</td>
|
|
1578
|
+
</tr>
|
|
1579
|
+
<tr>
|
|
1580
|
+
<td align="right" class="main">
|
|
1581
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
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
|
+
1 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="ACCUTREND Lactate Geraet von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS 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/1055894/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Lactate Geraet' bestellen" title=" 1 x 'ACCUTREND Lactate Geraet' 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"> <br />
|
|
1640
|
+
</td>
|
|
1641
|
+
<td width="5"></td>
|
|
1642
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Sensor Comf. Glucose Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p729480_accutrend-sensor-comf--glucose-teststreifen.html">ACCUTREND Sensor Comf. Glucose Teststreifen</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> 33,03 EUR </strong><br />
|
|
1651
|
+
</td>
|
|
1652
|
+
</tr>
|
|
1653
|
+
<tr>
|
|
1654
|
+
<td align="right" class="main">
|
|
1655
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
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
|
+
50 St Teststreifen
|
|
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="ACCUTREND Sensor Comf. Glucose Teststreifen von GPP PHARMA GMBH" href="advanced_search_result.php?keywords=GPP PHARMA GMBH">GPP PHARMA 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/729480/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Sensor Comf. Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Sensor Comf. Glucose Teststreifen' 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"> <br />
|
|
1714
|
+
</td>
|
|
1715
|
+
<td width="5"></td>
|
|
1716
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Sensor Comf. Glucose Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p2463879_accutrend-sensor-comf--glucose-teststreifen.html">ACCUTREND Sensor Comf. Glucose Teststreifen</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> 29,05 EUR </strong><br />
|
|
1725
|
+
</td>
|
|
1726
|
+
</tr>
|
|
1727
|
+
<tr>
|
|
1728
|
+
<td align="right" class="main">
|
|
1729
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
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
|
+
50 St Teststreifen
|
|
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="ACCUTREND Sensor Comf. Glucose Teststreifen von DIAPRAX GMBH" href="advanced_search_result.php?keywords=DIAPRAX GMBH">DIAPRAX 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/2463879/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Sensor Comf. Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Sensor Comf. Glucose Teststreifen' 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"> <a href="http://www.apotheke-online-internet.de/a/ac/p8799391_accutrend-sensor-ersatzbatterien.html"><img src="images/product_images/thumbnail_images/8799391.gif" alt="ACCUTREND Sensor Ersatzbatterien" /></a> <br />
|
|
1788
|
+
</td>
|
|
1789
|
+
<td width="5"></td>
|
|
1790
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Sensor Ersatzbatterien" href="http://www.apotheke-online-internet.de/a/ac/p8799391_accutrend-sensor-ersatzbatterien.html">ACCUTREND Sensor Ersatzbatterien</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> 7,57 EUR </strong><br />
|
|
1799
|
+
</td>
|
|
1800
|
+
</tr>
|
|
1801
|
+
<tr>
|
|
1802
|
+
<td align="right" class="main">
|
|
1803
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
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
|
+
2 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="ACCUTREND Sensor Ersatzbatterien von ROCHE DIAGNOSTICS GMBH" href="advanced_search_result.php?keywords=ROCHE DIAGNOSTICS GMBH">ROCHE DIAGNOSTICS 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/status1.gif" alt="Sofort" /></td>
|
|
1841
|
+
<td valign="left" class="main" width="200">Sofort</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/8799391/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Sensor Ersatzbatterien' bestellen" title=" 1 x 'ACCUTREND Sensor Ersatzbatterien' 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"> <br />
|
|
1862
|
+
</td>
|
|
1863
|
+
<td width="5"></td>
|
|
1864
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUTREND Sensor Glucose Teststreifen" href="http://www.apotheke-online-internet.de/a/ac/p729497_accutrend-sensor-glucose-teststreifen.html">ACCUTREND Sensor Glucose Teststreifen</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> 32,46 EUR </strong><br />
|
|
1873
|
+
</td>
|
|
1874
|
+
</tr>
|
|
1875
|
+
<tr>
|
|
1876
|
+
<td align="right" class="main">
|
|
1877
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
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
|
+
50 St Teststreifen
|
|
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="ACCUTREND Sensor Glucose Teststreifen von GPP PHARMA GMBH" href="advanced_search_result.php?keywords=GPP PHARMA GMBH">GPP PHARMA 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/729497/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUTREND Sensor Glucose Teststreifen' bestellen" title=" 1 x 'ACCUTREND Sensor Glucose Teststreifen' 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"> <br />
|
|
1936
|
+
</td>
|
|
1937
|
+
<td width="5"></td>
|
|
1938
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUZIDE 10 mg-12,5 mg Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p4627807_accuzide-10-mg-12-5-mg-filmtabletten.html">ACCUZIDE 10 mg-12,5 mg Filmtabletten</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> 14,43 EUR </strong><br />
|
|
1947
|
+
</td>
|
|
1948
|
+
</tr>
|
|
1949
|
+
<tr>
|
|
1950
|
+
<td align="right" class="main">
|
|
1951
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
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" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
1961
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
1962
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
1963
|
+
</font></a>
|
|
1964
|
+
</td>
|
|
1965
|
+
</tr>
|
|
1966
|
+
<tr height="15">
|
|
1967
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
1968
|
+
</td>
|
|
1969
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1970
|
+
30 St Filmtabletten
|
|
1971
|
+
</td>
|
|
1972
|
+
</tr>
|
|
1973
|
+
<tr height="15">
|
|
1974
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
1975
|
+
</td>
|
|
1976
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
1977
|
+
<a class="liste" title="ACCUZIDE 10 mg-12,5 mg Filmtabletten von PFIZER PHARMA GMBH" href="advanced_search_result.php?keywords=PFIZER PHARMA GMBH">PFIZER PHARMA GMBH</a>
|
|
1978
|
+
</td>
|
|
1979
|
+
</tr>
|
|
1980
|
+
</table>
|
|
1981
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1982
|
+
<tr>
|
|
1983
|
+
<td>
|
|
1984
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
1985
|
+
<tr>
|
|
1986
|
+
<td>
|
|
1987
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
1988
|
+
<tr>
|
|
1989
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
1990
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
1991
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
1992
|
+
</tr>
|
|
1993
|
+
</table>
|
|
1994
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
1995
|
+
<tr>
|
|
1996
|
+
<td><div align="right">
|
|
1997
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4627807/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUZIDE 10 mg-12,5 mg Filmtabletten' bestellen" title=" 1 x 'ACCUZIDE 10 mg-12,5 mg Filmtabletten' bestellen " /></a>
|
|
1998
|
+
</div>
|
|
1999
|
+
</td>
|
|
2000
|
+
</tr>
|
|
2001
|
+
</table>
|
|
2002
|
+
</td>
|
|
2003
|
+
</tr>
|
|
2004
|
+
</table>
|
|
2005
|
+
</td>
|
|
2006
|
+
</tr>
|
|
2007
|
+
</table>
|
|
2008
|
+
</td>
|
|
2009
|
+
</tr>
|
|
2010
|
+
<tr>
|
|
2011
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2012
|
+
</td>
|
|
2013
|
+
<td width="5"></td>
|
|
2014
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUZIDE 10 mg-12,5 mg Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p4627836_accuzide-10-mg-12-5-mg-filmtabletten.html">ACCUZIDE 10 mg-12,5 mg Filmtabletten</a></h2></td>
|
|
2015
|
+
</tr>
|
|
2016
|
+
<tr>
|
|
2017
|
+
<td></td>
|
|
2018
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2019
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2020
|
+
<tr>
|
|
2021
|
+
<td align="right" class="main2">
|
|
2022
|
+
<strong> 27,63 EUR </strong><br />
|
|
2023
|
+
</td>
|
|
2024
|
+
</tr>
|
|
2025
|
+
<tr>
|
|
2026
|
+
<td align="right" class="main">
|
|
2027
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
2028
|
+
</td>
|
|
2029
|
+
</tr>
|
|
2030
|
+
</table>
|
|
2031
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2032
|
+
<tr height="15">
|
|
2033
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2034
|
+
</td>
|
|
2035
|
+
<td align="left" valign="top" height="15">
|
|
2036
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
2037
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
2038
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
2039
|
+
</font></a>
|
|
2040
|
+
</td>
|
|
2041
|
+
</tr>
|
|
2042
|
+
<tr height="15">
|
|
2043
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2044
|
+
</td>
|
|
2045
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2046
|
+
100 St Filmtabletten
|
|
2047
|
+
</td>
|
|
2048
|
+
</tr>
|
|
2049
|
+
<tr height="15">
|
|
2050
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2051
|
+
</td>
|
|
2052
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2053
|
+
<a class="liste" title="ACCUZIDE 10 mg-12,5 mg Filmtabletten von PFIZER PHARMA GMBH" href="advanced_search_result.php?keywords=PFIZER PHARMA GMBH">PFIZER PHARMA GMBH</a>
|
|
2054
|
+
</td>
|
|
2055
|
+
</tr>
|
|
2056
|
+
</table>
|
|
2057
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2058
|
+
<tr>
|
|
2059
|
+
<td>
|
|
2060
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2061
|
+
<tr>
|
|
2062
|
+
<td>
|
|
2063
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2064
|
+
<tr>
|
|
2065
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2066
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
2067
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
2068
|
+
</tr>
|
|
2069
|
+
</table>
|
|
2070
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2071
|
+
<tr>
|
|
2072
|
+
<td><div align="right">
|
|
2073
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4627836/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUZIDE 10 mg-12,5 mg Filmtabletten' bestellen" title=" 1 x 'ACCUZIDE 10 mg-12,5 mg Filmtabletten' bestellen " /></a>
|
|
2074
|
+
</div>
|
|
2075
|
+
</td>
|
|
2076
|
+
</tr>
|
|
2077
|
+
</table>
|
|
2078
|
+
</td>
|
|
2079
|
+
</tr>
|
|
2080
|
+
</table>
|
|
2081
|
+
</td>
|
|
2082
|
+
</tr>
|
|
2083
|
+
</table>
|
|
2084
|
+
</td>
|
|
2085
|
+
</tr>
|
|
2086
|
+
<tr>
|
|
2087
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2088
|
+
</td>
|
|
2089
|
+
<td width="5"></td>
|
|
2090
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUZIDE 20 mg-12,5 mg Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p4627842_accuzide-20-mg-12-5-mg-filmtabletten.html">ACCUZIDE 20 mg-12,5 mg Filmtabletten</a></h2></td>
|
|
2091
|
+
</tr>
|
|
2092
|
+
<tr>
|
|
2093
|
+
<td></td>
|
|
2094
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2095
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2096
|
+
<tr>
|
|
2097
|
+
<td align="right" class="main2">
|
|
2098
|
+
<strong> 15,01 EUR </strong><br />
|
|
2099
|
+
</td>
|
|
2100
|
+
</tr>
|
|
2101
|
+
<tr>
|
|
2102
|
+
<td align="right" class="main">
|
|
2103
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
2104
|
+
</td>
|
|
2105
|
+
</tr>
|
|
2106
|
+
</table>
|
|
2107
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2108
|
+
<tr height="15">
|
|
2109
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2110
|
+
</td>
|
|
2111
|
+
<td align="left" valign="top" height="15">
|
|
2112
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
2113
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
2114
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
2115
|
+
</font></a>
|
|
2116
|
+
</td>
|
|
2117
|
+
</tr>
|
|
2118
|
+
<tr height="15">
|
|
2119
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2120
|
+
</td>
|
|
2121
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2122
|
+
30 St Filmtabletten
|
|
2123
|
+
</td>
|
|
2124
|
+
</tr>
|
|
2125
|
+
<tr height="15">
|
|
2126
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2127
|
+
</td>
|
|
2128
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2129
|
+
<a class="liste" title="ACCUZIDE 20 mg-12,5 mg Filmtabletten von PFIZER PHARMA GMBH" href="advanced_search_result.php?keywords=PFIZER PHARMA GMBH">PFIZER PHARMA GMBH</a>
|
|
2130
|
+
</td>
|
|
2131
|
+
</tr>
|
|
2132
|
+
</table>
|
|
2133
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2134
|
+
<tr>
|
|
2135
|
+
<td>
|
|
2136
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2137
|
+
<tr>
|
|
2138
|
+
<td>
|
|
2139
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2140
|
+
<tr>
|
|
2141
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2142
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
2143
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
2144
|
+
</tr>
|
|
2145
|
+
</table>
|
|
2146
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2147
|
+
<tr>
|
|
2148
|
+
<td><div align="right">
|
|
2149
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4627842/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUZIDE 20 mg-12,5 mg Filmtabletten' bestellen" title=" 1 x 'ACCUZIDE 20 mg-12,5 mg Filmtabletten' bestellen " /></a>
|
|
2150
|
+
</div>
|
|
2151
|
+
</td>
|
|
2152
|
+
</tr>
|
|
2153
|
+
</table>
|
|
2154
|
+
</td>
|
|
2155
|
+
</tr>
|
|
2156
|
+
</table>
|
|
2157
|
+
</td>
|
|
2158
|
+
</tr>
|
|
2159
|
+
</table>
|
|
2160
|
+
</td>
|
|
2161
|
+
</tr>
|
|
2162
|
+
<tr>
|
|
2163
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2164
|
+
</td>
|
|
2165
|
+
<td width="5"></td>
|
|
2166
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUZIDE 20 mg-12,5 mg Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p4627865_accuzide-20-mg-12-5-mg-filmtabletten.html">ACCUZIDE 20 mg-12,5 mg Filmtabletten</a></h2></td>
|
|
2167
|
+
</tr>
|
|
2168
|
+
<tr>
|
|
2169
|
+
<td></td>
|
|
2170
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2171
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2172
|
+
<tr>
|
|
2173
|
+
<td align="right" class="main2">
|
|
2174
|
+
<strong> 29,75 EUR </strong><br />
|
|
2175
|
+
</td>
|
|
2176
|
+
</tr>
|
|
2177
|
+
<tr>
|
|
2178
|
+
<td align="right" class="main">
|
|
2179
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
2180
|
+
</td>
|
|
2181
|
+
</tr>
|
|
2182
|
+
</table>
|
|
2183
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2184
|
+
<tr height="15">
|
|
2185
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2186
|
+
</td>
|
|
2187
|
+
<td align="left" valign="top" height="15">
|
|
2188
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
2189
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
2190
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
2191
|
+
</font></a>
|
|
2192
|
+
</td>
|
|
2193
|
+
</tr>
|
|
2194
|
+
<tr height="15">
|
|
2195
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2196
|
+
</td>
|
|
2197
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2198
|
+
100 St Filmtabletten
|
|
2199
|
+
</td>
|
|
2200
|
+
</tr>
|
|
2201
|
+
<tr height="15">
|
|
2202
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2203
|
+
</td>
|
|
2204
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2205
|
+
<a class="liste" title="ACCUZIDE 20 mg-12,5 mg Filmtabletten von PFIZER PHARMA GMBH" href="advanced_search_result.php?keywords=PFIZER PHARMA GMBH">PFIZER PHARMA GMBH</a>
|
|
2206
|
+
</td>
|
|
2207
|
+
</tr>
|
|
2208
|
+
</table>
|
|
2209
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2210
|
+
<tr>
|
|
2211
|
+
<td>
|
|
2212
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2213
|
+
<tr>
|
|
2214
|
+
<td>
|
|
2215
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2216
|
+
<tr>
|
|
2217
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2218
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
2219
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
2220
|
+
</tr>
|
|
2221
|
+
</table>
|
|
2222
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2223
|
+
<tr>
|
|
2224
|
+
<td><div align="right">
|
|
2225
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4627865/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUZIDE 20 mg-12,5 mg Filmtabletten' bestellen" title=" 1 x 'ACCUZIDE 20 mg-12,5 mg Filmtabletten' bestellen " /></a>
|
|
2226
|
+
</div>
|
|
2227
|
+
</td>
|
|
2228
|
+
</tr>
|
|
2229
|
+
</table>
|
|
2230
|
+
</td>
|
|
2231
|
+
</tr>
|
|
2232
|
+
</table>
|
|
2233
|
+
</td>
|
|
2234
|
+
</tr>
|
|
2235
|
+
</table>
|
|
2236
|
+
</td>
|
|
2237
|
+
</tr>
|
|
2238
|
+
<tr>
|
|
2239
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2240
|
+
</td>
|
|
2241
|
+
<td width="5"></td>
|
|
2242
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p923207_accuzide-20-mg-25-mg-diuplus-filmtabletten.html">ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten</a></h2></td>
|
|
2243
|
+
</tr>
|
|
2244
|
+
<tr>
|
|
2245
|
+
<td></td>
|
|
2246
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2247
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2248
|
+
<tr>
|
|
2249
|
+
<td align="right" class="main2">
|
|
2250
|
+
<strong> 15,60 EUR </strong><br />
|
|
2251
|
+
</td>
|
|
2252
|
+
</tr>
|
|
2253
|
+
<tr>
|
|
2254
|
+
<td align="right" class="main">
|
|
2255
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
2256
|
+
</td>
|
|
2257
|
+
</tr>
|
|
2258
|
+
</table>
|
|
2259
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2260
|
+
<tr height="15">
|
|
2261
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2262
|
+
</td>
|
|
2263
|
+
<td align="left" valign="top" height="15">
|
|
2264
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
2265
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
2266
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
2267
|
+
</font></a>
|
|
2268
|
+
</td>
|
|
2269
|
+
</tr>
|
|
2270
|
+
<tr height="15">
|
|
2271
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2272
|
+
</td>
|
|
2273
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2274
|
+
30 St Filmtabletten
|
|
2275
|
+
</td>
|
|
2276
|
+
</tr>
|
|
2277
|
+
<tr height="15">
|
|
2278
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2279
|
+
</td>
|
|
2280
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2281
|
+
<a class="liste" title="ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten von PFIZER PHARMA GMBH" href="advanced_search_result.php?keywords=PFIZER PHARMA GMBH">PFIZER PHARMA GMBH</a>
|
|
2282
|
+
</td>
|
|
2283
|
+
</tr>
|
|
2284
|
+
</table>
|
|
2285
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2286
|
+
<tr>
|
|
2287
|
+
<td>
|
|
2288
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2289
|
+
<tr>
|
|
2290
|
+
<td>
|
|
2291
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2292
|
+
<tr>
|
|
2293
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2294
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
2295
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
2296
|
+
</tr>
|
|
2297
|
+
</table>
|
|
2298
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2299
|
+
<tr>
|
|
2300
|
+
<td><div align="right">
|
|
2301
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/923207/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten' bestellen" title=" 1 x 'ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten' bestellen " /></a>
|
|
2302
|
+
</div>
|
|
2303
|
+
</td>
|
|
2304
|
+
</tr>
|
|
2305
|
+
</table>
|
|
2306
|
+
</td>
|
|
2307
|
+
</tr>
|
|
2308
|
+
</table>
|
|
2309
|
+
</td>
|
|
2310
|
+
</tr>
|
|
2311
|
+
</table>
|
|
2312
|
+
</td>
|
|
2313
|
+
</tr>
|
|
2314
|
+
<tr>
|
|
2315
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2316
|
+
</td>
|
|
2317
|
+
<td width="5"></td>
|
|
2318
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten" href="http://www.apotheke-online-internet.de/a/ac/p923236_accuzide-20-mg-25-mg-diuplus-filmtabletten.html">ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten</a></h2></td>
|
|
2319
|
+
</tr>
|
|
2320
|
+
<tr>
|
|
2321
|
+
<td></td>
|
|
2322
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2323
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2324
|
+
<tr>
|
|
2325
|
+
<td align="right" class="main2">
|
|
2326
|
+
<strong> 31,95 EUR </strong><br />
|
|
2327
|
+
</td>
|
|
2328
|
+
</tr>
|
|
2329
|
+
<tr>
|
|
2330
|
+
<td align="right" class="main">
|
|
2331
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
2332
|
+
</td>
|
|
2333
|
+
</tr>
|
|
2334
|
+
</table>
|
|
2335
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2336
|
+
<tr height="15">
|
|
2337
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2338
|
+
</td>
|
|
2339
|
+
<td align="left" valign="top" height="15">
|
|
2340
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
2341
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
2342
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
2343
|
+
</font></a>
|
|
2344
|
+
</td>
|
|
2345
|
+
</tr>
|
|
2346
|
+
<tr height="15">
|
|
2347
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2348
|
+
</td>
|
|
2349
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2350
|
+
100 St Filmtabletten
|
|
2351
|
+
</td>
|
|
2352
|
+
</tr>
|
|
2353
|
+
<tr height="15">
|
|
2354
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2355
|
+
</td>
|
|
2356
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2357
|
+
<a class="liste" title="ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten von PFIZER PHARMA GMBH" href="advanced_search_result.php?keywords=PFIZER PHARMA GMBH">PFIZER PHARMA GMBH</a>
|
|
2358
|
+
</td>
|
|
2359
|
+
</tr>
|
|
2360
|
+
</table>
|
|
2361
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2362
|
+
<tr>
|
|
2363
|
+
<td>
|
|
2364
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2365
|
+
<tr>
|
|
2366
|
+
<td>
|
|
2367
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2368
|
+
<tr>
|
|
2369
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2370
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
2371
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
2372
|
+
</tr>
|
|
2373
|
+
</table>
|
|
2374
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2375
|
+
<tr>
|
|
2376
|
+
<td><div align="right">
|
|
2377
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/923236/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten' bestellen" title=" 1 x 'ACCUZIDE 20 mg-25 mg Diuplus Filmtabletten' bestellen " /></a>
|
|
2378
|
+
</div>
|
|
2379
|
+
</td>
|
|
2380
|
+
</tr>
|
|
2381
|
+
</table>
|
|
2382
|
+
</td>
|
|
2383
|
+
</tr>
|
|
2384
|
+
</table>
|
|
2385
|
+
</td>
|
|
2386
|
+
</tr>
|
|
2387
|
+
</table>
|
|
2388
|
+
</td>
|
|
2389
|
+
</tr>
|
|
2390
|
+
<tr>
|
|
2391
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2392
|
+
</td>
|
|
2393
|
+
<td width="5"></td>
|
|
2394
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACE + SELEN Vita Vital Kapseln" href="http://www.apotheke-online-internet.de/a/ac/p8619911_ace---selen-vita-vital-kapseln.html">ACE + SELEN Vita Vital Kapseln</a></h2></td>
|
|
2395
|
+
</tr>
|
|
2396
|
+
<tr>
|
|
2397
|
+
<td></td>
|
|
2398
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2399
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2400
|
+
<tr>
|
|
2401
|
+
<td align="right" class="main2">
|
|
2402
|
+
<strong> 10,56 EUR </strong><br />
|
|
2403
|
+
</td>
|
|
2404
|
+
</tr>
|
|
2405
|
+
<tr>
|
|
2406
|
+
<td align="right" class="main">
|
|
2407
|
+
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>
|
|
2408
|
+
</td>
|
|
2409
|
+
</tr>
|
|
2410
|
+
</table>
|
|
2411
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2412
|
+
<tr height="15">
|
|
2413
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2414
|
+
</td>
|
|
2415
|
+
<td align="left" valign="top" height="15">
|
|
2416
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
2417
|
+
Rezeptfrei</font> </font></a>
|
|
2418
|
+
</td>
|
|
2419
|
+
</tr>
|
|
2420
|
+
<tr height="15">
|
|
2421
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2422
|
+
</td>
|
|
2423
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2424
|
+
60 St Kapseln
|
|
2425
|
+
</td>
|
|
2426
|
+
</tr>
|
|
2427
|
+
<tr height="15">
|
|
2428
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2429
|
+
</td>
|
|
2430
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2431
|
+
<a class="liste" title="ACE + SELEN Vita Vital Kapseln von J.MOELLER OBSTSAFTKELT" href="advanced_search_result.php?keywords=J.MOELLER OBSTSAFTKELT">J.MOELLER OBSTSAFTKELT</a>
|
|
2432
|
+
</td>
|
|
2433
|
+
</tr>
|
|
2434
|
+
</table>
|
|
2435
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2436
|
+
<tr>
|
|
2437
|
+
<td>
|
|
2438
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2439
|
+
<tr>
|
|
2440
|
+
<td>
|
|
2441
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2442
|
+
<tr>
|
|
2443
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2444
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
|
2445
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
|
2446
|
+
</tr>
|
|
2447
|
+
</table>
|
|
2448
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2449
|
+
<tr>
|
|
2450
|
+
<td><div align="right">
|
|
2451
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/8619911/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACE + SELEN Vita Vital Kapseln' bestellen" title=" 1 x 'ACE + SELEN Vita Vital Kapseln' bestellen " /></a>
|
|
2452
|
+
</div>
|
|
2453
|
+
</td>
|
|
2454
|
+
</tr>
|
|
2455
|
+
</table>
|
|
2456
|
+
</td>
|
|
2457
|
+
</tr>
|
|
2458
|
+
</table>
|
|
2459
|
+
</td>
|
|
2460
|
+
</tr>
|
|
2461
|
+
</table>
|
|
2462
|
+
</td>
|
|
2463
|
+
</tr>
|
|
2464
|
+
<tr>
|
|
2465
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2466
|
+
</td>
|
|
2467
|
+
<td width="5"></td>
|
|
2468
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACE BERCO Kapseln" href="http://www.apotheke-online-internet.de/a/ac/p5994235_ace-berco-kapseln.html">ACE BERCO Kapseln</a></h2></td>
|
|
2469
|
+
</tr>
|
|
2470
|
+
<tr>
|
|
2471
|
+
<td></td>
|
|
2472
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2473
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2474
|
+
<tr>
|
|
2475
|
+
<td align="right" class="main2">
|
|
2476
|
+
<strong> 15,39 EUR </strong><br />
|
|
2477
|
+
</td>
|
|
2478
|
+
</tr>
|
|
2479
|
+
<tr>
|
|
2480
|
+
<td align="right" class="main">
|
|
2481
|
+
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>
|
|
2482
|
+
</td>
|
|
2483
|
+
</tr>
|
|
2484
|
+
</table>
|
|
2485
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2486
|
+
<tr height="15">
|
|
2487
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2488
|
+
</td>
|
|
2489
|
+
<td align="left" valign="top" height="15">
|
|
2490
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
|
2491
|
+
Rezeptfrei</font> </font></a>
|
|
2492
|
+
</td>
|
|
2493
|
+
</tr>
|
|
2494
|
+
<tr height="15">
|
|
2495
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2496
|
+
</td>
|
|
2497
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2498
|
+
150 St Kapseln
|
|
2499
|
+
</td>
|
|
2500
|
+
</tr>
|
|
2501
|
+
<tr height="15">
|
|
2502
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2503
|
+
</td>
|
|
2504
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2505
|
+
<a class="liste" title="ACE BERCO Kapseln von BERCO ARZNEIM. GMBH" href="advanced_search_result.php?keywords=BERCO ARZNEIM. GMBH">BERCO ARZNEIM. GMBH</a>
|
|
2506
|
+
</td>
|
|
2507
|
+
</tr>
|
|
2508
|
+
</table>
|
|
2509
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2510
|
+
<tr>
|
|
2511
|
+
<td>
|
|
2512
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2513
|
+
<tr>
|
|
2514
|
+
<td>
|
|
2515
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2516
|
+
<tr>
|
|
2517
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2518
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
|
2519
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
|
2520
|
+
</tr>
|
|
2521
|
+
</table>
|
|
2522
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2523
|
+
<tr>
|
|
2524
|
+
<td><div align="right">
|
|
2525
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/5994235/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACE BERCO Kapseln' bestellen" title=" 1 x 'ACE BERCO Kapseln' bestellen " /></a>
|
|
2526
|
+
</div>
|
|
2527
|
+
</td>
|
|
2528
|
+
</tr>
|
|
2529
|
+
</table>
|
|
2530
|
+
</td>
|
|
2531
|
+
</tr>
|
|
2532
|
+
</table>
|
|
2533
|
+
</td>
|
|
2534
|
+
</tr>
|
|
2535
|
+
</table>
|
|
2536
|
+
</td>
|
|
2537
|
+
</tr>
|
|
2538
|
+
<tr>
|
|
2539
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2540
|
+
</td>
|
|
2541
|
+
<td width="5"></td>
|
|
2542
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACE HEMMER 12,5 R.A.N. Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p1370058_ace-hemmer-12-5-r-a-n--tabletten.html">ACE HEMMER 12,5 R.A.N. Tabletten</a></h2></td>
|
|
2543
|
+
</tr>
|
|
2544
|
+
<tr>
|
|
2545
|
+
<td></td>
|
|
2546
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2547
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2548
|
+
<tr>
|
|
2549
|
+
<td align="right" class="main2">
|
|
2550
|
+
<strong> 12,28 EUR </strong><br />
|
|
2551
|
+
</td>
|
|
2552
|
+
</tr>
|
|
2553
|
+
<tr>
|
|
2554
|
+
<td align="right" class="main">
|
|
2555
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
2556
|
+
</td>
|
|
2557
|
+
</tr>
|
|
2558
|
+
</table>
|
|
2559
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2560
|
+
<tr height="5">
|
|
2561
|
+
<td height="5"></td>
|
|
2562
|
+
</tr>
|
|
2563
|
+
<tr>
|
|
2564
|
+
<td align="left"><img src="templates/ph24shop/images/0_EURO.gif" alt="" height="42" width="55" border="0"><br /><font size="2" color="#2926b1" face="Verdana,Arial,Helvetica,sans-serif">Medikament ist zuzahlungsbefreit!</font></td>
|
|
2565
|
+
</tr>
|
|
2566
|
+
<tr height="5">
|
|
2567
|
+
<td height="5"></td>
|
|
2568
|
+
</tr>
|
|
2569
|
+
</table>
|
|
2570
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2571
|
+
<tr height="15">
|
|
2572
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2573
|
+
</td>
|
|
2574
|
+
<td align="left" valign="top" height="15">
|
|
2575
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
2576
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
2577
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
2578
|
+
</font></a>
|
|
2579
|
+
</td>
|
|
2580
|
+
</tr>
|
|
2581
|
+
<tr height="15">
|
|
2582
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2583
|
+
</td>
|
|
2584
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2585
|
+
100 St Tabletten
|
|
2586
|
+
</td>
|
|
2587
|
+
</tr>
|
|
2588
|
+
<tr height="15">
|
|
2589
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2590
|
+
</td>
|
|
2591
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2592
|
+
<a class="liste" title="ACE HEMMER 12,5 R.A.N. Tabletten von RAN NOVESIA AG" href="advanced_search_result.php?keywords=RAN NOVESIA AG">RAN NOVESIA AG</a>
|
|
2593
|
+
</td>
|
|
2594
|
+
</tr>
|
|
2595
|
+
</table>
|
|
2596
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2597
|
+
<tr>
|
|
2598
|
+
<td>
|
|
2599
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2600
|
+
<tr>
|
|
2601
|
+
<td>
|
|
2602
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2603
|
+
<tr>
|
|
2604
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2605
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
|
2606
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
|
2607
|
+
</tr>
|
|
2608
|
+
</table>
|
|
2609
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2610
|
+
<tr>
|
|
2611
|
+
<td><div align="right">
|
|
2612
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1370058/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACE HEMMER 12,5 R.A.N. Tabletten' bestellen" title=" 1 x 'ACE HEMMER 12,5 R.A.N. Tabletten' bestellen " /></a>
|
|
2613
|
+
</div>
|
|
2614
|
+
</td>
|
|
2615
|
+
</tr>
|
|
2616
|
+
</table>
|
|
2617
|
+
</td>
|
|
2618
|
+
</tr>
|
|
2619
|
+
</table>
|
|
2620
|
+
</td>
|
|
2621
|
+
</tr>
|
|
2622
|
+
</table>
|
|
2623
|
+
</td>
|
|
2624
|
+
</tr>
|
|
2625
|
+
<tr>
|
|
2626
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2627
|
+
</td>
|
|
2628
|
+
<td width="5"></td>
|
|
2629
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACE HEMMER 25 R.A.N. Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p1370070_ace-hemmer-25-r-a-n--tabletten.html">ACE HEMMER 25 R.A.N. Tabletten</a></h2></td>
|
|
2630
|
+
</tr>
|
|
2631
|
+
<tr>
|
|
2632
|
+
<td></td>
|
|
2633
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2634
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2635
|
+
<tr>
|
|
2636
|
+
<td align="right" class="main2">
|
|
2637
|
+
<strong> 10,69 EUR </strong><br />
|
|
2638
|
+
</td>
|
|
2639
|
+
</tr>
|
|
2640
|
+
<tr>
|
|
2641
|
+
<td align="right" class="main">
|
|
2642
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
2643
|
+
</td>
|
|
2644
|
+
</tr>
|
|
2645
|
+
</table>
|
|
2646
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2647
|
+
<tr height="5">
|
|
2648
|
+
<td height="5"></td>
|
|
2649
|
+
</tr>
|
|
2650
|
+
<tr>
|
|
2651
|
+
<td align="left"><img src="templates/ph24shop/images/0_EURO.gif" alt="" height="42" width="55" border="0"><br /><font size="2" color="#2926b1" face="Verdana,Arial,Helvetica,sans-serif">Medikament ist zuzahlungsbefreit!</font></td>
|
|
2652
|
+
</tr>
|
|
2653
|
+
<tr height="5">
|
|
2654
|
+
<td height="5"></td>
|
|
2655
|
+
</tr>
|
|
2656
|
+
</table>
|
|
2657
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2658
|
+
<tr height="15">
|
|
2659
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2660
|
+
</td>
|
|
2661
|
+
<td align="left" valign="top" height="15">
|
|
2662
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
2663
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
2664
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
2665
|
+
</font></a>
|
|
2666
|
+
</td>
|
|
2667
|
+
</tr>
|
|
2668
|
+
<tr height="15">
|
|
2669
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2670
|
+
</td>
|
|
2671
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2672
|
+
20 St Tabletten
|
|
2673
|
+
</td>
|
|
2674
|
+
</tr>
|
|
2675
|
+
<tr height="15">
|
|
2676
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2677
|
+
</td>
|
|
2678
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2679
|
+
<a class="liste" title="ACE HEMMER 25 R.A.N. Tabletten von RAN NOVESIA AG" href="advanced_search_result.php?keywords=RAN NOVESIA AG">RAN NOVESIA AG</a>
|
|
2680
|
+
</td>
|
|
2681
|
+
</tr>
|
|
2682
|
+
</table>
|
|
2683
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2684
|
+
<tr>
|
|
2685
|
+
<td>
|
|
2686
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2687
|
+
<tr>
|
|
2688
|
+
<td>
|
|
2689
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2690
|
+
<tr>
|
|
2691
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2692
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
|
2693
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
|
2694
|
+
</tr>
|
|
2695
|
+
</table>
|
|
2696
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2697
|
+
<tr>
|
|
2698
|
+
<td><div align="right">
|
|
2699
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1370070/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACE HEMMER 25 R.A.N. Tabletten' bestellen" title=" 1 x 'ACE HEMMER 25 R.A.N. Tabletten' bestellen " /></a>
|
|
2700
|
+
</div>
|
|
2701
|
+
</td>
|
|
2702
|
+
</tr>
|
|
2703
|
+
</table>
|
|
2704
|
+
</td>
|
|
2705
|
+
</tr>
|
|
2706
|
+
</table>
|
|
2707
|
+
</td>
|
|
2708
|
+
</tr>
|
|
2709
|
+
</table>
|
|
2710
|
+
</td>
|
|
2711
|
+
</tr>
|
|
2712
|
+
<tr>
|
|
2713
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
|
2714
|
+
</td>
|
|
2715
|
+
<td width="5"></td>
|
|
2716
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACE HEMMER 25 R.A.N. Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p1370130_ace-hemmer-25-r-a-n--tabletten.html">ACE HEMMER 25 R.A.N. Tabletten</a></h2></td>
|
|
2717
|
+
</tr>
|
|
2718
|
+
<tr>
|
|
2719
|
+
<td></td>
|
|
2720
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
|
2721
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2722
|
+
<tr>
|
|
2723
|
+
<td align="right" class="main2">
|
|
2724
|
+
<strong> 11,02 EUR </strong><br />
|
|
2725
|
+
</td>
|
|
2726
|
+
</tr>
|
|
2727
|
+
<tr>
|
|
2728
|
+
<td align="right" class="main">
|
|
2729
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
|
2730
|
+
</td>
|
|
2731
|
+
</tr>
|
|
2732
|
+
</table>
|
|
2733
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2734
|
+
<tr height="5">
|
|
2735
|
+
<td height="5"></td>
|
|
2736
|
+
</tr>
|
|
2737
|
+
<tr>
|
|
2738
|
+
<td align="left"><img src="templates/ph24shop/images/0_EURO.gif" alt="" height="42" width="55" border="0"><br /><font size="2" color="#2926b1" face="Verdana,Arial,Helvetica,sans-serif">Medikament ist zuzahlungsbefreit!</font></td>
|
|
2739
|
+
</tr>
|
|
2740
|
+
<tr height="5">
|
|
2741
|
+
<td height="5"></td>
|
|
2742
|
+
</tr>
|
|
2743
|
+
</table>
|
|
2744
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2745
|
+
<tr height="15">
|
|
2746
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
|
2747
|
+
</td>
|
|
2748
|
+
<td align="left" valign="top" height="15">
|
|
2749
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
|
2750
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
|
2751
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
|
2752
|
+
</font></a>
|
|
2753
|
+
</td>
|
|
2754
|
+
</tr>
|
|
2755
|
+
<tr height="15">
|
|
2756
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
|
2757
|
+
</td>
|
|
2758
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2759
|
+
50 St Tabletten
|
|
2760
|
+
</td>
|
|
2761
|
+
</tr>
|
|
2762
|
+
<tr height="15">
|
|
2763
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
|
2764
|
+
</td>
|
|
2765
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
|
2766
|
+
<a class="liste" title="ACE HEMMER 25 R.A.N. Tabletten von RAN NOVESIA AG" href="advanced_search_result.php?keywords=RAN NOVESIA AG">RAN NOVESIA AG</a>
|
|
2767
|
+
</td>
|
|
2768
|
+
</tr>
|
|
2769
|
+
</table>
|
|
2770
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2771
|
+
<tr>
|
|
2772
|
+
<td>
|
|
2773
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
2774
|
+
<tr>
|
|
2775
|
+
<td>
|
|
2776
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
|
2777
|
+
<tr>
|
|
2778
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
|
2779
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
|
2780
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
|
2781
|
+
</tr>
|
|
2782
|
+
</table>
|
|
2783
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2784
|
+
<tr>
|
|
2785
|
+
<td><div align="right">
|
|
2786
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/1370130/cat/4002/category/AC/page/16"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACE HEMMER 25 R.A.N. Tabletten' bestellen" title=" 1 x 'ACE HEMMER 25 R.A.N. Tabletten' bestellen " /></a>
|
|
2787
|
+
</div>
|
|
2788
|
+
</td>
|
|
2789
|
+
</tr>
|
|
2790
|
+
</table>
|
|
2791
|
+
</td>
|
|
2792
|
+
</tr>
|
|
2793
|
+
</table>
|
|
2794
|
+
</td>
|
|
2795
|
+
</tr>
|
|
2796
|
+
</table>
|
|
2797
|
+
</td>
|
|
2798
|
+
</tr>
|
|
2799
|
+
</table>
|
|
2800
|
+
</td>
|
|
2801
|
+
</tr>
|
|
2802
|
+
</table>
|
|
2803
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
2804
|
+
<tr valign="top">
|
|
2805
|
+
<td class="main"><p>Artikel Verzeichnis alphabetisch AC</p>
|
|
2806
|
+
<p>Unsere Kunden suchen häufig:</p>
|
|
2807
|
+
<p>ACALYPHA Acarosan </p></td>
|
|
2808
|
+
<td align="right"> </td>
|
|
2809
|
+
</tr>
|
|
2810
|
+
</table>
|
|
2811
|
+
<table width="100%" border="0">
|
|
2812
|
+
<tr>
|
|
2813
|
+
<td align="left">
|
|
2814
|
+
<!--
|
|
2815
|
+
* Social Bookmark Script
|
|
2816
|
+
* @ Version 1.5
|
|
2817
|
+
* @ Copyright (C) 2006 by Alexander Hadj Hassine - All rights reserved
|
|
2818
|
+
* @ Website http://www.social-bookmark-script.de/
|
|
2819
|
+
* @
|
|
2820
|
+
* @ Bei Nutzung des Scripts muessen alle unsere Copyright-Hinweise und Links in dem Script selbst,
|
|
2821
|
+
* @ sowie in der Anzeige/Ausgabe unveraendert bleiben!
|
|
2822
|
+
* @
|
|
2823
|
+
* @ D.h., sie duerfen nicht entfernt, umgewandelt, versteckt oder unsichtbar gemacht werden,
|
|
2824
|
+
* @ es sei den Sie verlinken http://www.social-bookmark-script.de/ mindestens 1 mal
|
|
2825
|
+
* @ "suchmaschinenfreundlich" von Ihrer Startseite!
|
|
2826
|
+
-->
|
|
2827
|
+
<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>
|
|
2828
|
+
<div style="border-top-style:solid; padding-top:3px; border-top-width: 1px; border-top-color: #2A4956; float: center;">
|
|
2829
|
+
<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&bm_url='+encodeURIComponent(location.href)+'&bm_notice=&bm_description='+encodeURIComponent(document.title)+'&bm_tags=');return false;"> <img style="padding-bottom:1px;" src="media/social/wong.gif" name="wong" border="0" id="wong"> </a>
|
|
2830
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://www.webnews.de/" onClick="window.open('http://www.webnews.de/einstellen?url='+encodeURIComponent(document.location)+'&title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/webnews.gif" name="Webnews" border="0" id="Webnews"> </a>
|
|
2831
|
+
<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>
|
|
2832
|
+
<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)+'&title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/oneview.gif" name="Oneview" border="0" id="Oneview"> </a>
|
|
2833
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://www.linkarena.com/" onClick="window.open('http://linkarena.com/bookmarks/addlink/?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+'&desc=&tags=');return false;"> <img style="padding-bottom:1px;" src="media/social/linkarena.gif" name="Linkarena" border="0" id="Linkarena"> </a>
|
|
2834
|
+
<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>
|
|
2835
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://digg.com/" onClick="window.open('http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&bodytext=&tags=&title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/digg.gif" name="Digg" border="0" id="Digg"> </a>
|
|
2836
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://del.icio.us/" onClick="window.open('http://del.icio.us/post?v=2&url='+encodeURIComponent(location.href)+'&notes=&tags=&title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/del.gif" name="Delicious" border="0" id="Delicious"> </a>
|
|
2837
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://www.stumbleupon.com/" onClick="window.open('http://www.stumbleupon.com/submit?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/stumbleupon.gif" name="StumbleUpon" border="0" id="StumbleUpon"> </a>
|
|
2838
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://www.netscape.com/" onClick="window.open('http://www.netscape.com/submit/?U='+encodeURIComponent(location.href)+'&T='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/netscape.gif" name="Netscape" border="0" id="Netscape"> </a>
|
|
2839
|
+
<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)+'&keywords=&t='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/furl.gif" name="Furl" border="0" id="Furl"> </a>
|
|
2840
|
+
<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)+'&d=&tag=&u='+encodeURIComponent(location.href));return false;"> <img style="padding-bottom:1px;" src="media/social/yahoo.gif" name="Yahoo" border="0" id="Yahoo"> </a>
|
|
2841
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://www.spurl.net/" onClick="window.open('http://www.spurl.net/spurl.php?v=3&tags=&title='+encodeURIComponent(document.title)+'&url='+encodeURIComponent(document.location.href));return false;"> <img style="padding-bottom:1px;" src="media/social/spurl.gif" name="Spurl" border="0" id="Spurl"> </a>
|
|
2842
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://www.google.com/" onClick="window.open('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+encodeURIComponent(location.href)+'&annotation=&labels=&title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/google.gif" name="Google" border="0" id="Google"> </a>
|
|
2843
|
+
<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&Description=&Tag=&Url='+encodeURIComponent(location.href)+'&Title='+encodeURIComponent(document.title));return false;"> <img style="padding-bottom:1px;" src="media/social/blinklist.gif" name="Blinklist" border="0" id="Blinklist"> </a>
|
|
2844
|
+
<a rel="nofollow" style="text-decoration:none;" href="http://www.technorati.com/" onClick="window.open('http://technorati.com/faves?add='+encodeURIComponent(location.href)+'&tag=');return false;"> <img style="padding-bottom:1px;" src="media/social/technorati.gif" name="Technorati" border="0" id="Technorati"> </a>
|
|
2845
|
+
<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)+'&title='+encodeURIComponent(document.title)+'&description=&tags=');return false;"> <img style="padding-bottom:1px;" src="media/social/ma_gnolia.gif" name="MaGnolia" border="0" id="MaGnolia"> </a>
|
|
2846
|
+
<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>
|
|
2847
|
+
</div>
|
|
2848
|
+
</td>
|
|
2849
|
+
</tr>
|
|
2850
|
+
</table>
|
|
2851
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
2852
|
+
<tr height="10">
|
|
2853
|
+
<td align="center" valign="middle" height="20"><font size="1" face="verdana">Abbildungen können von Originalprodukten abweichen</font></td>
|
|
2854
|
+
</tr>
|
|
2855
|
+
<tr>
|
|
2856
|
+
<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>
|
|
2857
|
+
</tr>
|
|
2858
|
+
<tr>
|
|
2859
|
+
<td>
|
|
2860
|
+
<table border="0" width="100%" cellspacing="0" cellpadding="2">
|
|
2861
|
+
<tr>
|
|
2862
|
+
<td class="smallText">Zeige <b>451</b> bis <b>480</b> (von insgesamt <b>2285</b> Artikeln)</td>
|
|
2863
|
+
</tr>
|
|
2864
|
+
<tr>
|
|
2865
|
+
<td class="smallText" align="left">Seiten: <a href="http://www.apotheke-online-internet.de/a/ac-page-15.html" class="pageResults" title=" vorherige Seite ">[<< vorherige]</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-12.html" class="pageResults" title=" Vorhergehende 12 Seiten ">...</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-13.html" class="pageResults" title=" Seite 13 ">13</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-14.html" class="pageResults" title=" Seite 14 ">14</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-15.html" class="pageResults" title=" Seite 15 ">15</a> <b>16</b> <a href="http://www.apotheke-online-internet.de/a/ac-page-17.html" class="pageResults" title=" Seite 17 ">17</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-18.html" class="pageResults" title=" Seite 18 ">18</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-19.html" class="pageResults" title=" Seite 19 ">19</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-20.html" class="pageResults" title=" Seite 20 ">20</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-21.html" class="pageResults" title=" Seite 21 ">21</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-22.html" class="pageResults" title=" Seite 22 ">22</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-23.html" class="pageResults" title=" Seite 23 ">23</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-24.html" class="pageResults" title=" Seite 24 ">24</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-25.html" class="pageResults" title=" Nächste 12 Seiten ">...</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-17.html" class="pageResults" title=" nächste Seite ">[nächste >>]</a> </td>
|
|
2866
|
+
</tr>
|
|
2867
|
+
</table></td>
|
|
2868
|
+
</tr>
|
|
2869
|
+
|
|
2870
|
+
</table>
|
|
2871
|
+
</div>
|
|
2872
|
+
</div>
|
|
2873
|
+
<div style="width:800px;margin:0px auto;clear: both;">
|
|
2874
|
+
<div align="center" class="ifooter">
|
|
2875
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center">
|
|
2876
|
+
<tr>
|
|
2877
|
+
<td align="center" valign="top">
|
|
2878
|
+
<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>
|
|
2879
|
+
<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>
|
|
2880
|
+
<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>
|
|
2881
|
+
<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>
|
|
2882
|
+
<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>
|
|
2883
|
+
<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>
|
|
2884
|
+
<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>
|
|
2885
|
+
<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>
|
|
2886
|
+
<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>
|
|
2887
|
+
<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>
|
|
2888
|
+
<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>
|
|
2889
|
+
<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>
|
|
2890
|
+
<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>
|
|
2891
|
+
<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>
|
|
2892
|
+
<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>
|
|
2893
|
+
<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>
|
|
2894
|
+
<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>
|
|
2895
|
+
<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>
|
|
2896
|
+
<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>
|
|
2897
|
+
<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>
|
|
2898
|
+
<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>
|
|
2899
|
+
<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>
|
|
2900
|
+
<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>
|
|
2901
|
+
</td>
|
|
2902
|
+
</tr>
|
|
2903
|
+
</table>
|
|
2904
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
|
2905
|
+
<td align="center" valign="top">
|
|
2906
|
+
|
|
2907
|
+
|
|
2908
|
+
<table width="100%" border="0" cellpadding="2" cellspacing="0">
|
|
2909
|
+
<tr>
|
|
2910
|
+
<td class="infoBoxHeading_cloud">
|
|
2911
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
2912
|
+
<tr>
|
|
2913
|
+
<td align="left" class="infoBoxHeadingTitle">Unsere Kunden suchen</td>
|
|
2914
|
+
</tr>
|
|
2915
|
+
</table>
|
|
2916
|
+
</td>
|
|
2917
|
+
</tr>
|
|
2918
|
+
<tr>
|
|
2919
|
+
<td class="infoBoxHeading_cloud" align="left">
|
|
2920
|
+
<table width="95%" border="0" cellpadding="2" cellspacing="0">
|
|
2921
|
+
<tr>
|
|
2922
|
+
<td class="boxText">
|
|
2923
|
+
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
|
2924
|
+
<tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
|
|
2925
|
+
<tr>
|
|
2926
|
+
<td align="center" class="boxText">
|
|
2927
|
+
<a title="Augenkompresse" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Augenkompresse" style="font-size:14px; font-weight:400; color:#B4972B;">Augenkompresse</a>
|
|
2928
|
+
<a title="Blausiegel" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Blausiegel" style="font-size:12px; font-weight:300; color:#AC974C;">Blausiegel</a>
|
|
2929
|
+
<a title="Celyoung creme" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Celyoung+creme" style="font-size:9px; font-weight:100; color:#999999;">Celyoung creme</a>
|
|
2930
|
+
<a title="Enzym Lefax" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Enzym+Lefax" style="font-size:13px; font-weight:400; color:#B19737;">Enzym Lefax</a>
|
|
2931
|
+
<a title="Flenin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Flenin" style="font-size:13px; font-weight:400; color:#AF973D;">Flenin</a>
|
|
2932
|
+
<a title="Glycilax" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Glycilax" style="font-size:14px; font-weight:400; color:#B59728;">Glycilax</a>
|
|
2933
|
+
<a title="Humalog" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Humalog" style="font-size:15px; font-weight:500; color:#BA9715;">Humalog</a>
|
|
2934
|
+
<a title="Imidin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Imidin" style="font-size:9px; font-weight:100; color:#9B9890;">Imidin</a>
|
|
2935
|
+
<a title="Immodium" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Immodium" style="font-size:12px; font-weight:300; color:#A99857;">Immodium</a>
|
|
2936
|
+
<a title="Kamillentee" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Kamillentee" style="font-size:12px; font-weight:300; color:#AB9750;">Kamillentee</a>
|
|
2937
|
+
<a title="Mercilon" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Mercilon" style="font-size:11px; font-weight:300; color:#A69863;">Mercilon</a>
|
|
2938
|
+
<a title="Mikroklist" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Mikroklist" style="font-size:12px; font-weight:300; color:#A89859;">Mikroklist</a>
|
|
2939
|
+
<a title="Neovadiol" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Neovadiol" style="font-size:12px; font-weight:300; color:#A7985D;">Neovadiol</a>
|
|
2940
|
+
<a title="Pickelex" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Pickelex" style="font-size:10px; font-weight:200; color:#A0987C;">Pickelex</a>
|
|
2941
|
+
<a title="Tasigna" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Tasigna" style="font-size:13px; font-weight:400; color:#B19736;">Tasigna</a>
|
|
2942
|
+
<a title="Voltaren dolo" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Voltaren+dolo" style="font-size:14px; font-weight:500; color:#B59725;">Voltaren dolo</a>
|
|
2943
|
+
<a title="Wala Ovaria" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Wala+Ovaria" style="font-size:15px; font-weight:500; color:#B99716;">Wala Ovaria</a>
|
|
2944
|
+
<a title="Wundversorgung" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Wundversorgung" style="font-size:14px; font-weight:400; color:#B59727;">Wundversorgung</a>
|
|
2945
|
+
<a title="antiadipositum x112" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=antiadipositum+x112" style="font-size:13px; font-weight:300; color:#AC974B;">antiadipositum x112</a>
|
|
2946
|
+
<a title="apotheke im internet" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=apotheke+im+internet" style="font-size:12px; font-weight:300; color:#A79860;">apotheke im internet</a>
|
|
2947
|
+
<a title="avene augencreme" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=avene+augencreme" style="font-size:11px; font-weight:200; color:#A4986B;">avene augencreme</a>
|
|
2948
|
+
<a title="betaisodona" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=betaisodona" style="font-size:13px; font-weight:400; color:#AF973D;">betaisodona</a>
|
|
2949
|
+
<a title="biocarn sirup" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=biocarn+sirup" style="font-size:10px; font-weight:200; color:#A0987C;">biocarn sirup</a>
|
|
2950
|
+
<a title="jarsin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=jarsin" style="font-size:13px; font-weight:300; color:#AD9747;">jarsin</a>
|
|
2951
|
+
<a title="kalt warm Kompresse" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=kalt+warm+Kompresse" style="font-size:11px; font-weight:200; color:#A19877;">kalt warm Kompresse</a>
|
|
2952
|
+
<a title="multi gyn liquigel" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=multi+gyn+liquigel" style="font-size:14px; font-weight:400; color:#B29731;">multi gyn liquigel</a>
|
|
2953
|
+
<a title="mycospor nagelset" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=mycospor+nagelset" style="font-size:12px; font-weight:300; color:#A8985A;">mycospor nagelset</a>
|
|
2954
|
+
<a title="nicorete" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=nicorete" style="font-size:12px; font-weight:300; color:#AA9754;">nicorete</a>
|
|
2955
|
+
<a title="optolind sensitiv" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=optolind+sensitiv" style="font-size:14px; font-weight:400; color:#B4972C;">optolind sensitiv</a>
|
|
2956
|
+
<a title="weleda calendula babycreme" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=weleda+calendula+babycreme" style="font-size:9px; font-weight:100; color:#9B9890;">weleda calendula babycreme</a>
|
|
2957
|
+
</td>
|
|
2958
|
+
</tr>
|
|
2959
|
+
<tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
|
|
2960
|
+
<tr>
|
|
2961
|
+
<td valign="middle" class="boxText">
|
|
2962
|
+
<a href="http://www.suchmaschinenoptimierung-hamburg.de/xtc-modules/german/tag-cloud.html" target="_blank">Was ist es?</a>
|
|
2963
|
+
</td>
|
|
2964
|
+
</tr>
|
|
2965
|
+
</table>
|
|
2966
|
+
</td>
|
|
2967
|
+
</tr>
|
|
2968
|
+
</table>
|
|
2969
|
+
</td>
|
|
2970
|
+
</tr>
|
|
2971
|
+
</table>
|
|
2972
|
+
</td></tr></table>
|
|
2973
|
+
<table width="800" height="5" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
|
2974
|
+
<td align="center" valign="top"></td></tr></table>
|
|
2975
|
+
<table style="border-top: 2px solid; border-color: #3e7d52;" width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
|
2976
|
+
<td colspan="5" align="center" valign="top" bgcolor="white" width="800">
|
|
2977
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
|
2978
|
+
<td align="center" valign="top"></td></tr></table>
|
|
2979
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><tr>
|
|
2980
|
+
<td colspan="2" align="center" valign="top">
|
|
2981
|
+
<table width="100%" border="0" cellpadding="2" cellspacing="0"><tr>
|
|
2982
|
+
<td class="infoBoxcontent" align="center">
|
|
2983
|
+
<table width="95%" border="0" cellpadding="2" cellspacing="0"><tr>
|
|
2984
|
+
<td class="boxText" align="center"><a href="shop_content.php/coID/1">Liefer- und Versandkosten</a> <a href="shop_content.php/coID/3">AGB</a> <a href="shop_content.php/coID/4">Impressum</a> <a href="shop_content.php/coID/7">Kontakt</a> <a href="content/sitemap.html">Sitemap</a> <a href="shop_content.php/coID/2">Privatsph�re und Datenschutz</a> <a href="shop_content.php/coID/0">Bankverbindung</a> </td>
|
|
2985
|
+
</tr>
|
|
2986
|
+
<tr>
|
|
2987
|
+
<td align="center" valign="top">
|
|
2988
|
+
<a id="link2" href="a.html" target=_top>A</a>
|
|
2989
|
+
<a id="link2" href="b.html" target=_top>B</a>
|
|
2990
|
+
<a id="link2" href="c.html" target=_top>C</a>
|
|
2991
|
+
<a id="link2" href="d.html" target=_top>D</a>
|
|
2992
|
+
<a id="link2" href="e.html" target=_top>E</a>
|
|
2993
|
+
<a id="link2" href="f.html" target=_top>F</a>
|
|
2994
|
+
<a id="link2" href="g.html" target=_top>G</a>
|
|
2995
|
+
<a id="link2" href="h.html" target=_top>H</a>
|
|
2996
|
+
<a id="link2" href="i.html" target=_top>I</a>
|
|
2997
|
+
<a id="link2" href="j.html" target=_top>J</a>
|
|
2998
|
+
<a id="link2" href="k.html" target=_top>K</a>
|
|
2999
|
+
<a id="link2" href="l.html" target=_top>L</a>
|
|
3000
|
+
<a id="link2" href="m.html" target=_top>M</a>
|
|
3001
|
+
<a id="link2" href="n.html" target=_top>N</a>
|
|
3002
|
+
<a id="link2" href="o.html" target=_top>O</a>
|
|
3003
|
+
<a id="link2" href="p.html" target=_top>P</a>
|
|
3004
|
+
<a id="link2" href="q.html" target=_top>Q</a>
|
|
3005
|
+
<a id="link2" href="r.html" target=_top>R</a>
|
|
3006
|
+
<a id="link2" href="s.html" target=_top>S</a>
|
|
3007
|
+
<a id="link2" href="t.html" target=_top>T</a>
|
|
3008
|
+
<a id="link2" href="u.html" target=_top>U</a>
|
|
3009
|
+
<a id="link2" href="v.html" target=_top>V</a>
|
|
3010
|
+
<a id="link2" href="w.html" target=_top>W</a>
|
|
3011
|
+
<a id="link2" href="x.html" target=_top>X</a>
|
|
3012
|
+
<a id="link2" href="y.html" target=_top>Y</a>
|
|
3013
|
+
<a id="link2" href="z.html" target=_top>Z</a>
|
|
3014
|
+
</td></tr>
|
|
3015
|
+
<tr>
|
|
3016
|
+
<td align="center" valign="top">
|
|
3017
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-2.html" target=_top>A</a>
|
|
3018
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-3.html" target=_top>B</a>
|
|
3019
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-4.html" target=_top>C</a>
|
|
3020
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-5.html" target=_top>D</a>
|
|
3021
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-6.html" target=_top>E</a>
|
|
3022
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-7.html" target=_top>F</a>
|
|
3023
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-8.html" target=_top>G</a>
|
|
3024
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-9.html" target=_top>H</a>
|
|
3025
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-10.html" target=_top>I</a>
|
|
3026
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-11.html" target=_top>J</a>
|
|
3027
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-12.html" target=_top>K</a>
|
|
3028
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-13.html" target=_top>L</a>
|
|
3029
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-14.html" target=_top>M</a>
|
|
3030
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-15.html" target=_top>N</a>
|
|
3031
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-16.html" target=_top>O</a>
|
|
3032
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-17.html" target=_top>P</a>
|
|
3033
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-18.html" target=_top>Q</a>
|
|
3034
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-19.html" target=_top>R</a>
|
|
3035
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-20.html" target=_top>S</a>
|
|
3036
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-21.html" target=_top>T</a>
|
|
3037
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-22.html" target=_top>U</a>
|
|
3038
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-23.html" target=_top>V</a>
|
|
3039
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-24.html" target=_top>W</a>
|
|
3040
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-25.html" target=_top>X</a>
|
|
3041
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-26.html" target=_top>Y</a>
|
|
3042
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-27.html" target=_top>Z</a>
|
|
3043
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-28.html" target=_top>0-9</a>
|
|
3044
|
+
</td></tr></table></td></tr></table></td></tr></table>
|
|
3045
|
+
<table style="border-top: 1px solid; border-color: #3e7d52;" width="520" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><br>
|
|
3046
|
+
<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üglich<a href="shop_content.php/coID/1"> Versandkosten</a></font></td>
|
|
3047
|
+
</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>
|
|
3048
|
+
</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>
|
|
3049
|
+
</tr><tr><td colspan="2" align="center" valign="top"><font face='Arial,Helvetica' size=1 color="#3e7d52">Copyright © 2007 by <b>www.pharma24.de</b> / 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>
|
|
3050
|
+
</tr></table></td></tr></table></div></div><div class="copyright">eCommerce Engine © 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>
|