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,3167 @@
|
|
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 ACHSELKRUECKE Holz f. Kinder" href="http://www.apotheke-online-internet.de/a/ac/p4848862_achselkruecke-holz-f--kinder.html">ACHSELKRUECKE Holz f. Kinder</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> 22,27 EUR </strong><br />
|
541
|
+
</td>
|
542
|
+
</tr>
|
543
|
+
<tr>
|
544
|
+
<td align="right" class="main">
|
545
|
+
incl. 7 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
546
|
+
</td>
|
547
|
+
</tr>
|
548
|
+
</table>
|
549
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
550
|
+
<tr height="15">
|
551
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
552
|
+
</td>
|
553
|
+
<td align="left" valign="top" height="15">
|
554
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
555
|
+
Rezeptfrei</font> </font></a>
|
556
|
+
</td>
|
557
|
+
</tr>
|
558
|
+
<tr height="15">
|
559
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
560
|
+
</td>
|
561
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
562
|
+
1 St
|
563
|
+
</td>
|
564
|
+
</tr>
|
565
|
+
<tr height="15">
|
566
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
567
|
+
</td>
|
568
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
569
|
+
<a class="liste" title="ACHSELKRUECKE Holz f. Kinder von PARAM" href="advanced_search_result.php?keywords=PARAM">PARAM</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/4848862/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACHSELKRUECKE Holz f. Kinder' bestellen" title=" 1 x 'ACHSELKRUECKE Holz f. Kinder' 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"> <br />
|
604
|
+
</td>
|
605
|
+
<td width="5"></td>
|
606
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACHSELSTUETZE 1315-2-K" href="http://www.apotheke-online-internet.de/a/ac/p8800792_achselstuetze-1315-2-k.html">ACHSELSTUETZE 1315-2-K</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> 38,76 EUR </strong><br />
|
615
|
+
</td>
|
616
|
+
</tr>
|
617
|
+
<tr>
|
618
|
+
<td align="right" class="main">
|
619
|
+
incl. 7 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
620
|
+
</td>
|
621
|
+
</tr>
|
622
|
+
</table>
|
623
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
624
|
+
<tr height="15">
|
625
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
626
|
+
</td>
|
627
|
+
<td align="left" valign="top" height="15">
|
628
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
629
|
+
Rezeptfrei</font> </font></a>
|
630
|
+
</td>
|
631
|
+
</tr>
|
632
|
+
<tr height="15">
|
633
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
634
|
+
</td>
|
635
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
636
|
+
1 St
|
637
|
+
</td>
|
638
|
+
</tr>
|
639
|
+
<tr height="15">
|
640
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
641
|
+
</td>
|
642
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
643
|
+
<a class="liste" title="ACHSELSTUETZE 1315-2-K von PARAM" href="advanced_search_result.php?keywords=PARAM">PARAM</a>
|
644
|
+
</td>
|
645
|
+
</tr>
|
646
|
+
</table>
|
647
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
648
|
+
<tr>
|
649
|
+
<td>
|
650
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
651
|
+
<tr>
|
652
|
+
<td>
|
653
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
654
|
+
<tr>
|
655
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
656
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
657
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
658
|
+
</tr>
|
659
|
+
</table>
|
660
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
661
|
+
<tr>
|
662
|
+
<td><div align="right">
|
663
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/8800792/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACHSELSTUETZE 1315-2-K' bestellen" title=" 1 x 'ACHSELSTUETZE 1315-2-K' 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 ACHSELSTUETZE gross 1315-2" href="http://www.apotheke-online-internet.de/a/ac/p7362806_achselstuetze-gross-1315-2.html">ACHSELSTUETZE gross 1315-2</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> 22,85 EUR </strong><br />
|
689
|
+
</td>
|
690
|
+
</tr>
|
691
|
+
<tr>
|
692
|
+
<td align="right" class="main">
|
693
|
+
incl. 7 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
694
|
+
</td>
|
695
|
+
</tr>
|
696
|
+
</table>
|
697
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
698
|
+
<tr height="15">
|
699
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
700
|
+
</td>
|
701
|
+
<td align="left" valign="top" height="15">
|
702
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
703
|
+
Rezeptfrei</font> </font></a>
|
704
|
+
</td>
|
705
|
+
</tr>
|
706
|
+
<tr height="15">
|
707
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
708
|
+
</td>
|
709
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
710
|
+
1 St
|
711
|
+
</td>
|
712
|
+
</tr>
|
713
|
+
<tr height="15">
|
714
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
715
|
+
</td>
|
716
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
717
|
+
<a class="liste" title="ACHSELSTUETZE gross 1315-2 von PARAM" href="advanced_search_result.php?keywords=PARAM">PARAM</a>
|
718
|
+
</td>
|
719
|
+
</tr>
|
720
|
+
</table>
|
721
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
722
|
+
<tr>
|
723
|
+
<td>
|
724
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
725
|
+
<tr>
|
726
|
+
<td>
|
727
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
728
|
+
<tr>
|
729
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
730
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
731
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
732
|
+
</tr>
|
733
|
+
</table>
|
734
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
735
|
+
<tr>
|
736
|
+
<td><div align="right">
|
737
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7362806/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACHSELSTUETZE gross 1315-2' bestellen" title=" 1 x 'ACHSELSTUETZE gross 1315-2' 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"> <br />
|
752
|
+
</td>
|
753
|
+
<td width="5"></td>
|
754
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACHSELSTUETZE klein 1315-2" href="http://www.apotheke-online-internet.de/a/ac/p7362781_achselstuetze-klein-1315-2.html">ACHSELSTUETZE klein 1315-2</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> 22,85 EUR </strong><br />
|
763
|
+
</td>
|
764
|
+
</tr>
|
765
|
+
<tr>
|
766
|
+
<td align="right" class="main">
|
767
|
+
incl. 7 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
768
|
+
</td>
|
769
|
+
</tr>
|
770
|
+
</table>
|
771
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
772
|
+
<tr height="15">
|
773
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
774
|
+
</td>
|
775
|
+
<td align="left" valign="top" height="15">
|
776
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
777
|
+
Rezeptfrei</font> </font></a>
|
778
|
+
</td>
|
779
|
+
</tr>
|
780
|
+
<tr height="15">
|
781
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
782
|
+
</td>
|
783
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
784
|
+
1 St
|
785
|
+
</td>
|
786
|
+
</tr>
|
787
|
+
<tr height="15">
|
788
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
789
|
+
</td>
|
790
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
791
|
+
<a class="liste" title="ACHSELSTUETZE klein 1315-2 von PARAM" href="advanced_search_result.php?keywords=PARAM">PARAM</a>
|
792
|
+
</td>
|
793
|
+
</tr>
|
794
|
+
</table>
|
795
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
796
|
+
<tr>
|
797
|
+
<td>
|
798
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
799
|
+
<tr>
|
800
|
+
<td>
|
801
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
802
|
+
<tr>
|
803
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
804
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
805
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
806
|
+
</tr>
|
807
|
+
</table>
|
808
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
809
|
+
<tr>
|
810
|
+
<td><div align="right">
|
811
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7362781/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACHSELSTUETZE klein 1315-2' bestellen" title=" 1 x 'ACHSELSTUETZE klein 1315-2' 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"> <br />
|
826
|
+
</td>
|
827
|
+
<td width="5"></td>
|
828
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACHSELSTUETZE mittel 1315-2" href="http://www.apotheke-online-internet.de/a/ac/p7362798_achselstuetze-mittel-1315-2.html">ACHSELSTUETZE mittel 1315-2</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> 22,85 EUR </strong><br />
|
837
|
+
</td>
|
838
|
+
</tr>
|
839
|
+
<tr>
|
840
|
+
<td align="right" class="main">
|
841
|
+
incl. 7 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
842
|
+
</td>
|
843
|
+
</tr>
|
844
|
+
</table>
|
845
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
846
|
+
<tr height="15">
|
847
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
848
|
+
</td>
|
849
|
+
<td align="left" valign="top" height="15">
|
850
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
851
|
+
Rezeptfrei</font> </font></a>
|
852
|
+
</td>
|
853
|
+
</tr>
|
854
|
+
<tr height="15">
|
855
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
856
|
+
</td>
|
857
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
858
|
+
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="ACHSELSTUETZE mittel 1315-2 von PARAM" href="advanced_search_result.php?keywords=PARAM">PARAM</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/7362798/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACHSELSTUETZE mittel 1315-2' bestellen" title=" 1 x 'ACHSELSTUETZE mittel 1315-2' 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"> <br />
|
900
|
+
</td>
|
901
|
+
<td width="5"></td>
|
902
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACHT SCHAETZE Tee Filterbeutel" href="http://www.apotheke-online-internet.de/a/ac/p1513664_acht-schaetze-tee-filterbeutel.html">ACHT SCHAETZE Tee Filterbeutel</a></h2></td>
|
903
|
+
</tr>
|
904
|
+
<tr>
|
905
|
+
<td></td>
|
906
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
907
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
908
|
+
<tr>
|
909
|
+
<td align="right" class="main2">
|
910
|
+
<strong> 11,50 EUR </strong><br />
|
911
|
+
</td>
|
912
|
+
</tr>
|
913
|
+
<tr>
|
914
|
+
<td align="right" class="main">
|
915
|
+
incl. 7 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
916
|
+
</td>
|
917
|
+
</tr>
|
918
|
+
</table>
|
919
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
920
|
+
<tr height="15">
|
921
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
922
|
+
</td>
|
923
|
+
<td align="left" valign="top" height="15">
|
924
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
925
|
+
Rezeptfrei</font> </font></a>
|
926
|
+
</td>
|
927
|
+
</tr>
|
928
|
+
<tr height="15">
|
929
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
930
|
+
</td>
|
931
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
932
|
+
20X2 g Filterbeutel
|
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="ACHT SCHAETZE Tee Filterbeutel von DMC INTER.TRADING GMBH" href="advanced_search_result.php?keywords=DMC INTER.TRADING GMBH">DMC INTER.TRADING 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/1513664/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACHT SCHAETZE Tee Filterbeutel' bestellen" title=" 1 x 'ACHT SCHAETZE Tee Filterbeutel' 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"> <br />
|
974
|
+
</td>
|
975
|
+
<td width="5"></td>
|
976
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIBUCHA Synomed Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p664697_acibucha-synomed-tabletten.html">ACIBUCHA Synomed Tabletten</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> 9,09 EUR </strong><br />
|
985
|
+
</td>
|
986
|
+
</tr>
|
987
|
+
<tr>
|
988
|
+
<td align="right" class="main">
|
989
|
+
incl. 7 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
990
|
+
</td>
|
991
|
+
</tr>
|
992
|
+
</table>
|
993
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
994
|
+
<tr height="15">
|
995
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
996
|
+
</td>
|
997
|
+
<td align="left" valign="top" height="15">
|
998
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
999
|
+
Rezeptfrei</font> </font></a>
|
1000
|
+
</td>
|
1001
|
+
</tr>
|
1002
|
+
<tr height="15">
|
1003
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1004
|
+
</td>
|
1005
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1006
|
+
50 St Tabletten
|
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="ACIBUCHA Synomed Tabletten von SYNOMED GMBH" href="advanced_search_result.php?keywords=SYNOMED GMBH">SYNOMED 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/664697/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIBUCHA Synomed Tabletten' bestellen" title=" 1 x 'ACIBUCHA Synomed Tabletten' 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 ACIBUCHA Synomed Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p664705_acibucha-synomed-tabletten.html">ACIBUCHA Synomed Tabletten</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> 15,03 EUR </strong><br />
|
1059
|
+
</td>
|
1060
|
+
</tr>
|
1061
|
+
<tr>
|
1062
|
+
<td align="right" class="main">
|
1063
|
+
incl. 7 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
1064
|
+
</td>
|
1065
|
+
</tr>
|
1066
|
+
</table>
|
1067
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1068
|
+
<tr height="15">
|
1069
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1070
|
+
</td>
|
1071
|
+
<td align="left" valign="top" height="15">
|
1072
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
1073
|
+
Rezeptfrei</font> </font></a>
|
1074
|
+
</td>
|
1075
|
+
</tr>
|
1076
|
+
<tr height="15">
|
1077
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1078
|
+
</td>
|
1079
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1080
|
+
100 St Tabletten
|
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="ACIBUCHA Synomed Tabletten von SYNOMED GMBH" href="advanced_search_result.php?keywords=SYNOMED GMBH">SYNOMED 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/664705/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIBUCHA Synomed Tabletten' bestellen" title=" 1 x 'ACIBUCHA Synomed Tabletten' 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 ACIBUCHA Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p3507509_acibucha-tabletten.html">ACIBUCHA Tabletten</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> 23,85 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 Tabletten
|
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="ACIBUCHA Tabletten von NATURPRODUKTE BERG" href="advanced_search_result.php?keywords=NATURPRODUKTE BERG">NATURPRODUKTE BERG</a>
|
1162
|
+
</td>
|
1163
|
+
</tr>
|
1164
|
+
</table>
|
1165
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1166
|
+
<tr>
|
1167
|
+
<td>
|
1168
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1169
|
+
<tr>
|
1170
|
+
<td>
|
1171
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1172
|
+
<tr>
|
1173
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1174
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
1175
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
1176
|
+
</tr>
|
1177
|
+
</table>
|
1178
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1179
|
+
<tr>
|
1180
|
+
<td><div align="right">
|
1181
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3507509/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIBUCHA Tabletten' bestellen" title=" 1 x 'ACIBUCHA Tabletten' 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 ACIC 200 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p4887709_acic-200-tabletten.html">ACIC 200 Tabletten</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> 13,41 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="5">
|
1217
|
+
<td height="5"></td>
|
1218
|
+
</tr>
|
1219
|
+
<tr>
|
1220
|
+
<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>
|
1221
|
+
</tr>
|
1222
|
+
<tr height="5">
|
1223
|
+
<td height="5"></td>
|
1224
|
+
</tr>
|
1225
|
+
</table>
|
1226
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1227
|
+
<tr height="15">
|
1228
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1229
|
+
</td>
|
1230
|
+
<td align="left" valign="top" height="15">
|
1231
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1232
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1233
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1234
|
+
</font></a>
|
1235
|
+
</td>
|
1236
|
+
</tr>
|
1237
|
+
<tr height="15">
|
1238
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1239
|
+
</td>
|
1240
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1241
|
+
25 St Tabletten
|
1242
|
+
</td>
|
1243
|
+
</tr>
|
1244
|
+
<tr height="15">
|
1245
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1246
|
+
</td>
|
1247
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1248
|
+
<a class="liste" title="ACIC 200 Tabletten von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1249
|
+
</td>
|
1250
|
+
</tr>
|
1251
|
+
</table>
|
1252
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1253
|
+
<tr>
|
1254
|
+
<td>
|
1255
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1256
|
+
<tr>
|
1257
|
+
<td>
|
1258
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1259
|
+
<tr>
|
1260
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1261
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1262
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1263
|
+
</tr>
|
1264
|
+
</table>
|
1265
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1266
|
+
<tr>
|
1267
|
+
<td><div align="right">
|
1268
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4887709/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC 200 Tabletten' bestellen" title=" 1 x 'ACIC 200 Tabletten' bestellen " /></a>
|
1269
|
+
</div>
|
1270
|
+
</td>
|
1271
|
+
</tr>
|
1272
|
+
</table>
|
1273
|
+
</td>
|
1274
|
+
</tr>
|
1275
|
+
</table>
|
1276
|
+
</td>
|
1277
|
+
</tr>
|
1278
|
+
</table>
|
1279
|
+
</td>
|
1280
|
+
</tr>
|
1281
|
+
<tr>
|
1282
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
1283
|
+
</td>
|
1284
|
+
<td width="5"></td>
|
1285
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC 200 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p4887715_acic-200-tabletten.html">ACIC 200 Tabletten</a></h2></td>
|
1286
|
+
</tr>
|
1287
|
+
<tr>
|
1288
|
+
<td></td>
|
1289
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1290
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1291
|
+
<tr>
|
1292
|
+
<td align="right" class="main2">
|
1293
|
+
<strong> 26,66 EUR </strong><br />
|
1294
|
+
</td>
|
1295
|
+
</tr>
|
1296
|
+
<tr>
|
1297
|
+
<td align="right" class="main">
|
1298
|
+
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>
|
1299
|
+
</td>
|
1300
|
+
</tr>
|
1301
|
+
</table>
|
1302
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1303
|
+
<tr height="5">
|
1304
|
+
<td height="5"></td>
|
1305
|
+
</tr>
|
1306
|
+
<tr>
|
1307
|
+
<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>
|
1308
|
+
</tr>
|
1309
|
+
<tr height="5">
|
1310
|
+
<td height="5"></td>
|
1311
|
+
</tr>
|
1312
|
+
</table>
|
1313
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1314
|
+
<tr height="15">
|
1315
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1316
|
+
</td>
|
1317
|
+
<td align="left" valign="top" height="15">
|
1318
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1319
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1320
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1321
|
+
</font></a>
|
1322
|
+
</td>
|
1323
|
+
</tr>
|
1324
|
+
<tr height="15">
|
1325
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1326
|
+
</td>
|
1327
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1328
|
+
100 St Tabletten
|
1329
|
+
</td>
|
1330
|
+
</tr>
|
1331
|
+
<tr height="15">
|
1332
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1333
|
+
</td>
|
1334
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1335
|
+
<a class="liste" title="ACIC 200 Tabletten von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1336
|
+
</td>
|
1337
|
+
</tr>
|
1338
|
+
</table>
|
1339
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1340
|
+
<tr>
|
1341
|
+
<td>
|
1342
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1343
|
+
<tr>
|
1344
|
+
<td>
|
1345
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1346
|
+
<tr>
|
1347
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1348
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1349
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1350
|
+
</tr>
|
1351
|
+
</table>
|
1352
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1353
|
+
<tr>
|
1354
|
+
<td><div align="right">
|
1355
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4887715/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC 200 Tabletten' bestellen" title=" 1 x 'ACIC 200 Tabletten' bestellen " /></a>
|
1356
|
+
</div>
|
1357
|
+
</td>
|
1358
|
+
</tr>
|
1359
|
+
</table>
|
1360
|
+
</td>
|
1361
|
+
</tr>
|
1362
|
+
</table>
|
1363
|
+
</td>
|
1364
|
+
</tr>
|
1365
|
+
</table>
|
1366
|
+
</td>
|
1367
|
+
</tr>
|
1368
|
+
<tr>
|
1369
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
1370
|
+
</td>
|
1371
|
+
<td width="5"></td>
|
1372
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC 400 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p4887721_acic-400-tabletten.html">ACIC 400 Tabletten</a></h2></td>
|
1373
|
+
</tr>
|
1374
|
+
<tr>
|
1375
|
+
<td></td>
|
1376
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1377
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1378
|
+
<tr>
|
1379
|
+
<td align="right" class="main2">
|
1380
|
+
<strong> 19,10 EUR </strong><br />
|
1381
|
+
</td>
|
1382
|
+
</tr>
|
1383
|
+
<tr>
|
1384
|
+
<td align="right" class="main">
|
1385
|
+
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>
|
1386
|
+
</td>
|
1387
|
+
</tr>
|
1388
|
+
</table>
|
1389
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1390
|
+
<tr height="5">
|
1391
|
+
<td height="5"></td>
|
1392
|
+
</tr>
|
1393
|
+
<tr>
|
1394
|
+
<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>
|
1395
|
+
</tr>
|
1396
|
+
<tr height="5">
|
1397
|
+
<td height="5"></td>
|
1398
|
+
</tr>
|
1399
|
+
</table>
|
1400
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1401
|
+
<tr height="15">
|
1402
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1403
|
+
</td>
|
1404
|
+
<td align="left" valign="top" height="15">
|
1405
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1406
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1407
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1408
|
+
</font></a>
|
1409
|
+
</td>
|
1410
|
+
</tr>
|
1411
|
+
<tr height="15">
|
1412
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1413
|
+
</td>
|
1414
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1415
|
+
35 St Tabletten
|
1416
|
+
</td>
|
1417
|
+
</tr>
|
1418
|
+
<tr height="15">
|
1419
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1420
|
+
</td>
|
1421
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1422
|
+
<a class="liste" title="ACIC 400 Tabletten von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1423
|
+
</td>
|
1424
|
+
</tr>
|
1425
|
+
</table>
|
1426
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1427
|
+
<tr>
|
1428
|
+
<td>
|
1429
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1430
|
+
<tr>
|
1431
|
+
<td>
|
1432
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1433
|
+
<tr>
|
1434
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1435
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1436
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1437
|
+
</tr>
|
1438
|
+
</table>
|
1439
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1440
|
+
<tr>
|
1441
|
+
<td><div align="right">
|
1442
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4887721/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC 400 Tabletten' bestellen" title=" 1 x 'ACIC 400 Tabletten' bestellen " /></a>
|
1443
|
+
</div>
|
1444
|
+
</td>
|
1445
|
+
</tr>
|
1446
|
+
</table>
|
1447
|
+
</td>
|
1448
|
+
</tr>
|
1449
|
+
</table>
|
1450
|
+
</td>
|
1451
|
+
</tr>
|
1452
|
+
</table>
|
1453
|
+
</td>
|
1454
|
+
</tr>
|
1455
|
+
<tr>
|
1456
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
1457
|
+
</td>
|
1458
|
+
<td width="5"></td>
|
1459
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC 400 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p4887738_acic-400-tabletten.html">ACIC 400 Tabletten</a></h2></td>
|
1460
|
+
</tr>
|
1461
|
+
<tr>
|
1462
|
+
<td></td>
|
1463
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1464
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1465
|
+
<tr>
|
1466
|
+
<td align="right" class="main2">
|
1467
|
+
<strong> 29,74 EUR </strong><br />
|
1468
|
+
</td>
|
1469
|
+
</tr>
|
1470
|
+
<tr>
|
1471
|
+
<td align="right" class="main">
|
1472
|
+
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>
|
1473
|
+
</td>
|
1474
|
+
</tr>
|
1475
|
+
</table>
|
1476
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1477
|
+
<tr height="5">
|
1478
|
+
<td height="5"></td>
|
1479
|
+
</tr>
|
1480
|
+
<tr>
|
1481
|
+
<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>
|
1482
|
+
</tr>
|
1483
|
+
<tr height="5">
|
1484
|
+
<td height="5"></td>
|
1485
|
+
</tr>
|
1486
|
+
</table>
|
1487
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1488
|
+
<tr height="15">
|
1489
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1490
|
+
</td>
|
1491
|
+
<td align="left" valign="top" height="15">
|
1492
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1493
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1494
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1495
|
+
</font></a>
|
1496
|
+
</td>
|
1497
|
+
</tr>
|
1498
|
+
<tr height="15">
|
1499
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1500
|
+
</td>
|
1501
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1502
|
+
70 St Tabletten
|
1503
|
+
</td>
|
1504
|
+
</tr>
|
1505
|
+
<tr height="15">
|
1506
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1507
|
+
</td>
|
1508
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1509
|
+
<a class="liste" title="ACIC 400 Tabletten von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1510
|
+
</td>
|
1511
|
+
</tr>
|
1512
|
+
</table>
|
1513
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1514
|
+
<tr>
|
1515
|
+
<td>
|
1516
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1517
|
+
<tr>
|
1518
|
+
<td>
|
1519
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1520
|
+
<tr>
|
1521
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1522
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1523
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1524
|
+
</tr>
|
1525
|
+
</table>
|
1526
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1527
|
+
<tr>
|
1528
|
+
<td><div align="right">
|
1529
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4887738/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC 400 Tabletten' bestellen" title=" 1 x 'ACIC 400 Tabletten' bestellen " /></a>
|
1530
|
+
</div>
|
1531
|
+
</td>
|
1532
|
+
</tr>
|
1533
|
+
</table>
|
1534
|
+
</td>
|
1535
|
+
</tr>
|
1536
|
+
</table>
|
1537
|
+
</td>
|
1538
|
+
</tr>
|
1539
|
+
</table>
|
1540
|
+
</td>
|
1541
|
+
</tr>
|
1542
|
+
<tr>
|
1543
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
1544
|
+
</td>
|
1545
|
+
<td width="5"></td>
|
1546
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC 800 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p4887744_acic-800-tabletten.html">ACIC 800 Tabletten</a></h2></td>
|
1547
|
+
</tr>
|
1548
|
+
<tr>
|
1549
|
+
<td></td>
|
1550
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1551
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1552
|
+
<tr>
|
1553
|
+
<td align="right" class="main2">
|
1554
|
+
<strong> 26,12 EUR </strong><br />
|
1555
|
+
</td>
|
1556
|
+
</tr>
|
1557
|
+
<tr>
|
1558
|
+
<td align="right" class="main">
|
1559
|
+
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>
|
1560
|
+
</td>
|
1561
|
+
</tr>
|
1562
|
+
</table>
|
1563
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1564
|
+
<tr height="5">
|
1565
|
+
<td height="5"></td>
|
1566
|
+
</tr>
|
1567
|
+
<tr>
|
1568
|
+
<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>
|
1569
|
+
</tr>
|
1570
|
+
<tr height="5">
|
1571
|
+
<td height="5"></td>
|
1572
|
+
</tr>
|
1573
|
+
</table>
|
1574
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1575
|
+
<tr height="15">
|
1576
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1577
|
+
</td>
|
1578
|
+
<td align="left" valign="top" height="15">
|
1579
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1580
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1581
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1582
|
+
</font></a>
|
1583
|
+
</td>
|
1584
|
+
</tr>
|
1585
|
+
<tr height="15">
|
1586
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1587
|
+
</td>
|
1588
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1589
|
+
35 St Tabletten
|
1590
|
+
</td>
|
1591
|
+
</tr>
|
1592
|
+
<tr height="15">
|
1593
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1594
|
+
</td>
|
1595
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1596
|
+
<a class="liste" title="ACIC 800 Tabletten von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1597
|
+
</td>
|
1598
|
+
</tr>
|
1599
|
+
</table>
|
1600
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1601
|
+
<tr>
|
1602
|
+
<td>
|
1603
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1604
|
+
<tr>
|
1605
|
+
<td>
|
1606
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1607
|
+
<tr>
|
1608
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1609
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1610
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1611
|
+
</tr>
|
1612
|
+
</table>
|
1613
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1614
|
+
<tr>
|
1615
|
+
<td><div align="right">
|
1616
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4887744/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC 800 Tabletten' bestellen" title=" 1 x 'ACIC 800 Tabletten' bestellen " /></a>
|
1617
|
+
</div>
|
1618
|
+
</td>
|
1619
|
+
</tr>
|
1620
|
+
</table>
|
1621
|
+
</td>
|
1622
|
+
</tr>
|
1623
|
+
</table>
|
1624
|
+
</td>
|
1625
|
+
</tr>
|
1626
|
+
</table>
|
1627
|
+
</td>
|
1628
|
+
</tr>
|
1629
|
+
<tr>
|
1630
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
1631
|
+
</td>
|
1632
|
+
<td width="5"></td>
|
1633
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC Creme" href="http://www.apotheke-online-internet.de/a/ac/p762170_acic-creme.html">ACIC Creme</a></h2></td>
|
1634
|
+
</tr>
|
1635
|
+
<tr>
|
1636
|
+
<td></td>
|
1637
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1638
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1639
|
+
<tr>
|
1640
|
+
<td align="right" class="main2">
|
1641
|
+
<strong> 11,17 EUR </strong><br />
|
1642
|
+
</td>
|
1643
|
+
</tr>
|
1644
|
+
<tr>
|
1645
|
+
<td align="right" class="main">
|
1646
|
+
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>
|
1647
|
+
</td>
|
1648
|
+
</tr>
|
1649
|
+
</table>
|
1650
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1651
|
+
<tr height="15">
|
1652
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1653
|
+
</td>
|
1654
|
+
<td align="left" valign="top" height="15">
|
1655
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1656
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1657
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1658
|
+
</font></a>
|
1659
|
+
</td>
|
1660
|
+
</tr>
|
1661
|
+
<tr height="15">
|
1662
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1663
|
+
</td>
|
1664
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1665
|
+
2 g Creme
|
1666
|
+
</td>
|
1667
|
+
</tr>
|
1668
|
+
<tr height="15">
|
1669
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1670
|
+
</td>
|
1671
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1672
|
+
<a class="liste" title="ACIC Creme von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1673
|
+
</td>
|
1674
|
+
</tr>
|
1675
|
+
</table>
|
1676
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1677
|
+
<tr>
|
1678
|
+
<td>
|
1679
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1680
|
+
<tr>
|
1681
|
+
<td>
|
1682
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1683
|
+
<tr>
|
1684
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1685
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1686
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1687
|
+
</tr>
|
1688
|
+
</table>
|
1689
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1690
|
+
<tr>
|
1691
|
+
<td><div align="right">
|
1692
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/762170/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC Creme' bestellen" title=" 1 x 'ACIC Creme' bestellen " /></a>
|
1693
|
+
</div>
|
1694
|
+
</td>
|
1695
|
+
</tr>
|
1696
|
+
</table>
|
1697
|
+
</td>
|
1698
|
+
</tr>
|
1699
|
+
</table>
|
1700
|
+
</td>
|
1701
|
+
</tr>
|
1702
|
+
</table>
|
1703
|
+
</td>
|
1704
|
+
</tr>
|
1705
|
+
<tr>
|
1706
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
1707
|
+
</td>
|
1708
|
+
<td width="5"></td>
|
1709
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC Creme" href="http://www.apotheke-online-internet.de/a/ac/p7203634_acic-creme.html">ACIC Creme</a></h2></td>
|
1710
|
+
</tr>
|
1711
|
+
<tr>
|
1712
|
+
<td></td>
|
1713
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1714
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1715
|
+
<tr>
|
1716
|
+
<td align="right" class="main2">
|
1717
|
+
<strong> 21,38 EUR </strong><br />
|
1718
|
+
</td>
|
1719
|
+
</tr>
|
1720
|
+
<tr>
|
1721
|
+
<td align="right" class="main">
|
1722
|
+
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>
|
1723
|
+
</td>
|
1724
|
+
</tr>
|
1725
|
+
</table>
|
1726
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1727
|
+
<tr height="15">
|
1728
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1729
|
+
</td>
|
1730
|
+
<td align="left" valign="top" height="15">
|
1731
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1732
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1733
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1734
|
+
</font></a>
|
1735
|
+
</td>
|
1736
|
+
</tr>
|
1737
|
+
<tr height="15">
|
1738
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1739
|
+
</td>
|
1740
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1741
|
+
4X5 g Creme
|
1742
|
+
</td>
|
1743
|
+
</tr>
|
1744
|
+
<tr height="15">
|
1745
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1746
|
+
</td>
|
1747
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1748
|
+
<a class="liste" title="ACIC Creme von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1749
|
+
</td>
|
1750
|
+
</tr>
|
1751
|
+
</table>
|
1752
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1753
|
+
<tr>
|
1754
|
+
<td>
|
1755
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1756
|
+
<tr>
|
1757
|
+
<td>
|
1758
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1759
|
+
<tr>
|
1760
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1761
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1762
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1763
|
+
</tr>
|
1764
|
+
</table>
|
1765
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1766
|
+
<tr>
|
1767
|
+
<td><div align="right">
|
1768
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7203634/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC Creme' bestellen" title=" 1 x 'ACIC Creme' bestellen " /></a>
|
1769
|
+
</div>
|
1770
|
+
</td>
|
1771
|
+
</tr>
|
1772
|
+
</table>
|
1773
|
+
</td>
|
1774
|
+
</tr>
|
1775
|
+
</table>
|
1776
|
+
</td>
|
1777
|
+
</tr>
|
1778
|
+
</table>
|
1779
|
+
</td>
|
1780
|
+
</tr>
|
1781
|
+
<tr>
|
1782
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
1783
|
+
</td>
|
1784
|
+
<td width="5"></td>
|
1785
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC Creme" href="http://www.apotheke-online-internet.de/a/ac/p8672816_acic-creme.html">ACIC Creme</a></h2></td>
|
1786
|
+
</tr>
|
1787
|
+
<tr>
|
1788
|
+
<td></td>
|
1789
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1790
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1791
|
+
<tr>
|
1792
|
+
<td align="right" class="main2">
|
1793
|
+
<strong> 13,23 EUR </strong><br />
|
1794
|
+
</td>
|
1795
|
+
</tr>
|
1796
|
+
<tr>
|
1797
|
+
<td align="right" class="main">
|
1798
|
+
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>
|
1799
|
+
</td>
|
1800
|
+
</tr>
|
1801
|
+
</table>
|
1802
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1803
|
+
<tr height="15">
|
1804
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1805
|
+
</td>
|
1806
|
+
<td align="left" valign="top" height="15">
|
1807
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1808
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1809
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1810
|
+
</font></a>
|
1811
|
+
</td>
|
1812
|
+
</tr>
|
1813
|
+
<tr height="15">
|
1814
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1815
|
+
</td>
|
1816
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1817
|
+
5 g Creme
|
1818
|
+
</td>
|
1819
|
+
</tr>
|
1820
|
+
<tr height="15">
|
1821
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1822
|
+
</td>
|
1823
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1824
|
+
<a class="liste" title="ACIC Creme von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1825
|
+
</td>
|
1826
|
+
</tr>
|
1827
|
+
</table>
|
1828
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1829
|
+
<tr>
|
1830
|
+
<td>
|
1831
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1832
|
+
<tr>
|
1833
|
+
<td>
|
1834
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1835
|
+
<tr>
|
1836
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1837
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1838
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1839
|
+
</tr>
|
1840
|
+
</table>
|
1841
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1842
|
+
<tr>
|
1843
|
+
<td><div align="right">
|
1844
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/8672816/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC Creme' bestellen" title=" 1 x 'ACIC Creme' bestellen " /></a>
|
1845
|
+
</div>
|
1846
|
+
</td>
|
1847
|
+
</tr>
|
1848
|
+
</table>
|
1849
|
+
</td>
|
1850
|
+
</tr>
|
1851
|
+
</table>
|
1852
|
+
</td>
|
1853
|
+
</tr>
|
1854
|
+
</table>
|
1855
|
+
</td>
|
1856
|
+
</tr>
|
1857
|
+
<tr>
|
1858
|
+
<td rowspan="2" align="left" valign="top"> <a href="http://www.apotheke-online-internet.de/hauterkrankungen/herpes/p8654310_acic-creme-bei-lippenherpes.html"><img src="images/product_images/thumbnail_images/8654310.gif" alt="ACIC Creme bei Lippenherpes" /></a> <br />
|
1859
|
+
</td>
|
1860
|
+
<td width="5"></td>
|
1861
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC Creme bei Lippenherpes" href="http://www.apotheke-online-internet.de/hauterkrankungen/herpes/p8654310_acic-creme-bei-lippenherpes.html">ACIC Creme bei Lippenherpes</a></h2></td>
|
1862
|
+
</tr>
|
1863
|
+
<tr>
|
1864
|
+
<td></td>
|
1865
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1866
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1867
|
+
<tr>
|
1868
|
+
<td align="right" class="main2">
|
1869
|
+
<strong> 4,13 EUR </strong><br />
|
1870
|
+
</td>
|
1871
|
+
</tr>
|
1872
|
+
<tr>
|
1873
|
+
<td align="right" class="main">
|
1874
|
+
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>
|
1875
|
+
</td>
|
1876
|
+
</tr>
|
1877
|
+
</table>
|
1878
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1879
|
+
<tr height="15">
|
1880
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1881
|
+
</td>
|
1882
|
+
<td align="left" valign="top" height="15">
|
1883
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
1884
|
+
Rezeptfrei</font> </font></a>
|
1885
|
+
</td>
|
1886
|
+
</tr>
|
1887
|
+
<tr height="15">
|
1888
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1889
|
+
</td>
|
1890
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1891
|
+
2 g Creme
|
1892
|
+
</td>
|
1893
|
+
</tr>
|
1894
|
+
<tr height="15">
|
1895
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1896
|
+
</td>
|
1897
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1898
|
+
<a class="liste" title="ACIC Creme bei Lippenherpes von HEXAL AG" href="advanced_search_result.php?keywords=HEXAL AG">HEXAL AG</a>
|
1899
|
+
</td>
|
1900
|
+
</tr>
|
1901
|
+
</table>
|
1902
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1903
|
+
<tr>
|
1904
|
+
<td>
|
1905
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1906
|
+
<tr>
|
1907
|
+
<td>
|
1908
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1909
|
+
<tr>
|
1910
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1911
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1912
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1913
|
+
</tr>
|
1914
|
+
</table>
|
1915
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1916
|
+
<tr>
|
1917
|
+
<td><div align="right">
|
1918
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/8654310/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC Creme bei Lippenherpes' bestellen" title=" 1 x 'ACIC Creme bei Lippenherpes' bestellen " /></a>
|
1919
|
+
</div>
|
1920
|
+
</td>
|
1921
|
+
</tr>
|
1922
|
+
</table>
|
1923
|
+
</td>
|
1924
|
+
</tr>
|
1925
|
+
</table>
|
1926
|
+
</td>
|
1927
|
+
</tr>
|
1928
|
+
</table>
|
1929
|
+
</td>
|
1930
|
+
</tr>
|
1931
|
+
<tr>
|
1932
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
1933
|
+
</td>
|
1934
|
+
<td width="5"></td>
|
1935
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACIC OPHTAL Augensalbe" href="http://www.apotheke-online-internet.de/a/ac/p7376518_acic-ophtal-augensalbe.html">ACIC OPHTAL Augensalbe</a></h2></td>
|
1936
|
+
</tr>
|
1937
|
+
<tr>
|
1938
|
+
<td></td>
|
1939
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
1940
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1941
|
+
<tr>
|
1942
|
+
<td align="right" class="main2">
|
1943
|
+
<strong> 21,41 EUR </strong><br />
|
1944
|
+
</td>
|
1945
|
+
</tr>
|
1946
|
+
<tr>
|
1947
|
+
<td align="right" class="main">
|
1948
|
+
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>
|
1949
|
+
</td>
|
1950
|
+
</tr>
|
1951
|
+
</table>
|
1952
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1953
|
+
<tr height="15">
|
1954
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
1955
|
+
</td>
|
1956
|
+
<td align="left" valign="top" height="15">
|
1957
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
1958
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
1959
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
1960
|
+
</font></a>
|
1961
|
+
</td>
|
1962
|
+
</tr>
|
1963
|
+
<tr height="15">
|
1964
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
1965
|
+
</td>
|
1966
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1967
|
+
4.5 g Augensalbe
|
1968
|
+
</td>
|
1969
|
+
</tr>
|
1970
|
+
<tr height="15">
|
1971
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
1972
|
+
</td>
|
1973
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
1974
|
+
<a class="liste" title="ACIC OPHTAL Augensalbe von DR WINZER PHARMA GMBH" href="advanced_search_result.php?keywords=DR WINZER PHARMA GMBH">DR WINZER PHARMA GMBH</a>
|
1975
|
+
</td>
|
1976
|
+
</tr>
|
1977
|
+
</table>
|
1978
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1979
|
+
<tr>
|
1980
|
+
<td>
|
1981
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
1982
|
+
<tr>
|
1983
|
+
<td>
|
1984
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
1985
|
+
<tr>
|
1986
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
1987
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
1988
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
1989
|
+
</tr>
|
1990
|
+
</table>
|
1991
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1992
|
+
<tr>
|
1993
|
+
<td><div align="right">
|
1994
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7376518/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACIC OPHTAL Augensalbe' bestellen" title=" 1 x 'ACIC OPHTAL Augensalbe' bestellen " /></a>
|
1995
|
+
</div>
|
1996
|
+
</td>
|
1997
|
+
</tr>
|
1998
|
+
</table>
|
1999
|
+
</td>
|
2000
|
+
</tr>
|
2001
|
+
</table>
|
2002
|
+
</td>
|
2003
|
+
</tr>
|
2004
|
+
</table>
|
2005
|
+
</td>
|
2006
|
+
</tr>
|
2007
|
+
<tr>
|
2008
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2009
|
+
</td>
|
2010
|
+
<td width="5"></td>
|
2011
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLO BASICS 200 mg Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p2753264_aciclo-basics-200-mg-tabletten.html">ACICLO BASICS 200 mg Tabletten</a></h2></td>
|
2012
|
+
</tr>
|
2013
|
+
<tr>
|
2014
|
+
<td></td>
|
2015
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2016
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2017
|
+
<tr>
|
2018
|
+
<td align="right" class="main2">
|
2019
|
+
<strong> 13,27 EUR </strong><br />
|
2020
|
+
</td>
|
2021
|
+
</tr>
|
2022
|
+
<tr>
|
2023
|
+
<td align="right" class="main">
|
2024
|
+
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>
|
2025
|
+
</td>
|
2026
|
+
</tr>
|
2027
|
+
</table>
|
2028
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2029
|
+
<tr height="5">
|
2030
|
+
<td height="5"></td>
|
2031
|
+
</tr>
|
2032
|
+
<tr>
|
2033
|
+
<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>
|
2034
|
+
</tr>
|
2035
|
+
<tr height="5">
|
2036
|
+
<td height="5"></td>
|
2037
|
+
</tr>
|
2038
|
+
</table>
|
2039
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2040
|
+
<tr height="15">
|
2041
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2042
|
+
</td>
|
2043
|
+
<td align="left" valign="top" height="15">
|
2044
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2045
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2046
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2047
|
+
</font></a>
|
2048
|
+
</td>
|
2049
|
+
</tr>
|
2050
|
+
<tr height="15">
|
2051
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2052
|
+
</td>
|
2053
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2054
|
+
25 St Tabletten
|
2055
|
+
</td>
|
2056
|
+
</tr>
|
2057
|
+
<tr height="15">
|
2058
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2059
|
+
</td>
|
2060
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2061
|
+
<a class="liste" title="ACICLO BASICS 200 mg Tabletten von BASICS GMBH" href="advanced_search_result.php?keywords=BASICS GMBH">BASICS GMBH</a>
|
2062
|
+
</td>
|
2063
|
+
</tr>
|
2064
|
+
</table>
|
2065
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2066
|
+
<tr>
|
2067
|
+
<td>
|
2068
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2069
|
+
<tr>
|
2070
|
+
<td>
|
2071
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2072
|
+
<tr>
|
2073
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2074
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2075
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2076
|
+
</tr>
|
2077
|
+
</table>
|
2078
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2079
|
+
<tr>
|
2080
|
+
<td><div align="right">
|
2081
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/2753264/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLO BASICS 200 mg Tabletten' bestellen" title=" 1 x 'ACICLO BASICS 200 mg Tabletten' bestellen " /></a>
|
2082
|
+
</div>
|
2083
|
+
</td>
|
2084
|
+
</tr>
|
2085
|
+
</table>
|
2086
|
+
</td>
|
2087
|
+
</tr>
|
2088
|
+
</table>
|
2089
|
+
</td>
|
2090
|
+
</tr>
|
2091
|
+
</table>
|
2092
|
+
</td>
|
2093
|
+
</tr>
|
2094
|
+
<tr>
|
2095
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2096
|
+
</td>
|
2097
|
+
<td width="5"></td>
|
2098
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLO BASICS 400 mg Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p2758327_aciclo-basics-400-mg-tabletten.html">ACICLO BASICS 400 mg Tabletten</a></h2></td>
|
2099
|
+
</tr>
|
2100
|
+
<tr>
|
2101
|
+
<td></td>
|
2102
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2103
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2104
|
+
<tr>
|
2105
|
+
<td align="right" class="main2">
|
2106
|
+
<strong> 18,96 EUR </strong><br />
|
2107
|
+
</td>
|
2108
|
+
</tr>
|
2109
|
+
<tr>
|
2110
|
+
<td align="right" class="main">
|
2111
|
+
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>
|
2112
|
+
</td>
|
2113
|
+
</tr>
|
2114
|
+
</table>
|
2115
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2116
|
+
<tr height="5">
|
2117
|
+
<td height="5"></td>
|
2118
|
+
</tr>
|
2119
|
+
<tr>
|
2120
|
+
<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>
|
2121
|
+
</tr>
|
2122
|
+
<tr height="5">
|
2123
|
+
<td height="5"></td>
|
2124
|
+
</tr>
|
2125
|
+
</table>
|
2126
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2127
|
+
<tr height="15">
|
2128
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2129
|
+
</td>
|
2130
|
+
<td align="left" valign="top" height="15">
|
2131
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2132
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2133
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2134
|
+
</font></a>
|
2135
|
+
</td>
|
2136
|
+
</tr>
|
2137
|
+
<tr height="15">
|
2138
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2139
|
+
</td>
|
2140
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2141
|
+
35 St Tabletten
|
2142
|
+
</td>
|
2143
|
+
</tr>
|
2144
|
+
<tr height="15">
|
2145
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2146
|
+
</td>
|
2147
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2148
|
+
<a class="liste" title="ACICLO BASICS 400 mg Tabletten von BASICS GMBH" href="advanced_search_result.php?keywords=BASICS GMBH">BASICS GMBH</a>
|
2149
|
+
</td>
|
2150
|
+
</tr>
|
2151
|
+
</table>
|
2152
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2153
|
+
<tr>
|
2154
|
+
<td>
|
2155
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2156
|
+
<tr>
|
2157
|
+
<td>
|
2158
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2159
|
+
<tr>
|
2160
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2161
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2162
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2163
|
+
</tr>
|
2164
|
+
</table>
|
2165
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2166
|
+
<tr>
|
2167
|
+
<td><div align="right">
|
2168
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/2758327/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLO BASICS 400 mg Tabletten' bestellen" title=" 1 x 'ACICLO BASICS 400 mg Tabletten' bestellen " /></a>
|
2169
|
+
</div>
|
2170
|
+
</td>
|
2171
|
+
</tr>
|
2172
|
+
</table>
|
2173
|
+
</td>
|
2174
|
+
</tr>
|
2175
|
+
</table>
|
2176
|
+
</td>
|
2177
|
+
</tr>
|
2178
|
+
</table>
|
2179
|
+
</td>
|
2180
|
+
</tr>
|
2181
|
+
<tr>
|
2182
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2183
|
+
</td>
|
2184
|
+
<td width="5"></td>
|
2185
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLO BASICS 800 mg Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p2758356_aciclo-basics-800-mg-tabletten.html">ACICLO BASICS 800 mg Tabletten</a></h2></td>
|
2186
|
+
</tr>
|
2187
|
+
<tr>
|
2188
|
+
<td></td>
|
2189
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2190
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2191
|
+
<tr>
|
2192
|
+
<td align="right" class="main2">
|
2193
|
+
<strong> 25,88 EUR </strong><br />
|
2194
|
+
</td>
|
2195
|
+
</tr>
|
2196
|
+
<tr>
|
2197
|
+
<td align="right" class="main">
|
2198
|
+
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>
|
2199
|
+
</td>
|
2200
|
+
</tr>
|
2201
|
+
</table>
|
2202
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2203
|
+
<tr height="5">
|
2204
|
+
<td height="5"></td>
|
2205
|
+
</tr>
|
2206
|
+
<tr>
|
2207
|
+
<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>
|
2208
|
+
</tr>
|
2209
|
+
<tr height="5">
|
2210
|
+
<td height="5"></td>
|
2211
|
+
</tr>
|
2212
|
+
</table>
|
2213
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2214
|
+
<tr height="15">
|
2215
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2216
|
+
</td>
|
2217
|
+
<td align="left" valign="top" height="15">
|
2218
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2219
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2220
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2221
|
+
</font></a>
|
2222
|
+
</td>
|
2223
|
+
</tr>
|
2224
|
+
<tr height="15">
|
2225
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2226
|
+
</td>
|
2227
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2228
|
+
35 St Tabletten
|
2229
|
+
</td>
|
2230
|
+
</tr>
|
2231
|
+
<tr height="15">
|
2232
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2233
|
+
</td>
|
2234
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2235
|
+
<a class="liste" title="ACICLO BASICS 800 mg Tabletten von BASICS GMBH" href="advanced_search_result.php?keywords=BASICS GMBH">BASICS GMBH</a>
|
2236
|
+
</td>
|
2237
|
+
</tr>
|
2238
|
+
</table>
|
2239
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2240
|
+
<tr>
|
2241
|
+
<td>
|
2242
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2243
|
+
<tr>
|
2244
|
+
<td>
|
2245
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2246
|
+
<tr>
|
2247
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2248
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2249
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2250
|
+
</tr>
|
2251
|
+
</table>
|
2252
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2253
|
+
<tr>
|
2254
|
+
<td><div align="right">
|
2255
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/2758356/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLO BASICS 800 mg Tabletten' bestellen" title=" 1 x 'ACICLO BASICS 800 mg Tabletten' bestellen " /></a>
|
2256
|
+
</div>
|
2257
|
+
</td>
|
2258
|
+
</tr>
|
2259
|
+
</table>
|
2260
|
+
</td>
|
2261
|
+
</tr>
|
2262
|
+
</table>
|
2263
|
+
</td>
|
2264
|
+
</tr>
|
2265
|
+
</table>
|
2266
|
+
</td>
|
2267
|
+
</tr>
|
2268
|
+
<tr>
|
2269
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2270
|
+
</td>
|
2271
|
+
<td width="5"></td>
|
2272
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLO-CT Creme" href="http://www.apotheke-online-internet.de/a/ac/p2538169_aciclo-ct-creme.html">ACICLO-CT Creme</a></h2></td>
|
2273
|
+
</tr>
|
2274
|
+
<tr>
|
2275
|
+
<td></td>
|
2276
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2277
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2278
|
+
<tr>
|
2279
|
+
<td align="right" class="main2">
|
2280
|
+
<strong> 4,11 EUR </strong><br />
|
2281
|
+
</td>
|
2282
|
+
</tr>
|
2283
|
+
<tr>
|
2284
|
+
<td align="right" class="main">
|
2285
|
+
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>
|
2286
|
+
</td>
|
2287
|
+
</tr>
|
2288
|
+
</table>
|
2289
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2290
|
+
<tr height="15">
|
2291
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2292
|
+
</td>
|
2293
|
+
<td align="left" valign="top" height="15">
|
2294
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
2295
|
+
Rezeptfrei</font> </font></a>
|
2296
|
+
</td>
|
2297
|
+
</tr>
|
2298
|
+
<tr height="15">
|
2299
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2300
|
+
</td>
|
2301
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2302
|
+
2 g Creme
|
2303
|
+
</td>
|
2304
|
+
</tr>
|
2305
|
+
<tr height="15">
|
2306
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2307
|
+
</td>
|
2308
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2309
|
+
<a class="liste" title="ACICLO-CT Creme von CT-ARZNEIMITTEL GMBH" href="advanced_search_result.php?keywords=CT-ARZNEIMITTEL GMBH">CT-ARZNEIMITTEL GMBH</a>
|
2310
|
+
</td>
|
2311
|
+
</tr>
|
2312
|
+
</table>
|
2313
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2314
|
+
<tr>
|
2315
|
+
<td>
|
2316
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2317
|
+
<tr>
|
2318
|
+
<td>
|
2319
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2320
|
+
<tr>
|
2321
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2322
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2323
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2324
|
+
</tr>
|
2325
|
+
</table>
|
2326
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2327
|
+
<tr>
|
2328
|
+
<td><div align="right">
|
2329
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/2538169/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLO-CT Creme' bestellen" title=" 1 x 'ACICLO-CT Creme' bestellen " /></a>
|
2330
|
+
</div>
|
2331
|
+
</td>
|
2332
|
+
</tr>
|
2333
|
+
</table>
|
2334
|
+
</td>
|
2335
|
+
</tr>
|
2336
|
+
</table>
|
2337
|
+
</td>
|
2338
|
+
</tr>
|
2339
|
+
</table>
|
2340
|
+
</td>
|
2341
|
+
</tr>
|
2342
|
+
<tr>
|
2343
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2344
|
+
</td>
|
2345
|
+
<td width="5"></td>
|
2346
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLOBETA 200 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p7501739_aciclobeta-200-tabletten.html">ACICLOBETA 200 Tabletten</a></h2></td>
|
2347
|
+
</tr>
|
2348
|
+
<tr>
|
2349
|
+
<td></td>
|
2350
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2351
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2352
|
+
<tr>
|
2353
|
+
<td align="right" class="main2">
|
2354
|
+
<strong> 13,41 EUR </strong><br />
|
2355
|
+
</td>
|
2356
|
+
</tr>
|
2357
|
+
<tr>
|
2358
|
+
<td align="right" class="main">
|
2359
|
+
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>
|
2360
|
+
</td>
|
2361
|
+
</tr>
|
2362
|
+
</table>
|
2363
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2364
|
+
<tr height="5">
|
2365
|
+
<td height="5"></td>
|
2366
|
+
</tr>
|
2367
|
+
<tr>
|
2368
|
+
<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>
|
2369
|
+
</tr>
|
2370
|
+
<tr height="5">
|
2371
|
+
<td height="5"></td>
|
2372
|
+
</tr>
|
2373
|
+
</table>
|
2374
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2375
|
+
<tr height="15">
|
2376
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2377
|
+
</td>
|
2378
|
+
<td align="left" valign="top" height="15">
|
2379
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2380
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2381
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2382
|
+
</font></a>
|
2383
|
+
</td>
|
2384
|
+
</tr>
|
2385
|
+
<tr height="15">
|
2386
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2387
|
+
</td>
|
2388
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2389
|
+
25 St Tabletten
|
2390
|
+
</td>
|
2391
|
+
</tr>
|
2392
|
+
<tr height="15">
|
2393
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2394
|
+
</td>
|
2395
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2396
|
+
<a class="liste" title="ACICLOBETA 200 Tabletten von BETAPHARM ARZNEIM.GMBH" href="advanced_search_result.php?keywords=BETAPHARM ARZNEIM.GMBH">BETAPHARM ARZNEIM.GMBH</a>
|
2397
|
+
</td>
|
2398
|
+
</tr>
|
2399
|
+
</table>
|
2400
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2401
|
+
<tr>
|
2402
|
+
<td>
|
2403
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2404
|
+
<tr>
|
2405
|
+
<td>
|
2406
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2407
|
+
<tr>
|
2408
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2409
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2410
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2411
|
+
</tr>
|
2412
|
+
</table>
|
2413
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2414
|
+
<tr>
|
2415
|
+
<td><div align="right">
|
2416
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7501739/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLOBETA 200 Tabletten' bestellen" title=" 1 x 'ACICLOBETA 200 Tabletten' bestellen " /></a>
|
2417
|
+
</div>
|
2418
|
+
</td>
|
2419
|
+
</tr>
|
2420
|
+
</table>
|
2421
|
+
</td>
|
2422
|
+
</tr>
|
2423
|
+
</table>
|
2424
|
+
</td>
|
2425
|
+
</tr>
|
2426
|
+
</table>
|
2427
|
+
</td>
|
2428
|
+
</tr>
|
2429
|
+
<tr>
|
2430
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2431
|
+
</td>
|
2432
|
+
<td width="5"></td>
|
2433
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLOBETA 400 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p7501745_aciclobeta-400-tabletten.html">ACICLOBETA 400 Tabletten</a></h2></td>
|
2434
|
+
</tr>
|
2435
|
+
<tr>
|
2436
|
+
<td></td>
|
2437
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2438
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2439
|
+
<tr>
|
2440
|
+
<td align="right" class="main2">
|
2441
|
+
<strong> 19,10 EUR </strong><br />
|
2442
|
+
</td>
|
2443
|
+
</tr>
|
2444
|
+
<tr>
|
2445
|
+
<td align="right" class="main">
|
2446
|
+
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>
|
2447
|
+
</td>
|
2448
|
+
</tr>
|
2449
|
+
</table>
|
2450
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2451
|
+
<tr height="5">
|
2452
|
+
<td height="5"></td>
|
2453
|
+
</tr>
|
2454
|
+
<tr>
|
2455
|
+
<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>
|
2456
|
+
</tr>
|
2457
|
+
<tr height="5">
|
2458
|
+
<td height="5"></td>
|
2459
|
+
</tr>
|
2460
|
+
</table>
|
2461
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2462
|
+
<tr height="15">
|
2463
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2464
|
+
</td>
|
2465
|
+
<td align="left" valign="top" height="15">
|
2466
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2467
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2468
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2469
|
+
</font></a>
|
2470
|
+
</td>
|
2471
|
+
</tr>
|
2472
|
+
<tr height="15">
|
2473
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2474
|
+
</td>
|
2475
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2476
|
+
35 St Tabletten
|
2477
|
+
</td>
|
2478
|
+
</tr>
|
2479
|
+
<tr height="15">
|
2480
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2481
|
+
</td>
|
2482
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2483
|
+
<a class="liste" title="ACICLOBETA 400 Tabletten von BETAPHARM ARZNEIM.GMBH" href="advanced_search_result.php?keywords=BETAPHARM ARZNEIM.GMBH">BETAPHARM ARZNEIM.GMBH</a>
|
2484
|
+
</td>
|
2485
|
+
</tr>
|
2486
|
+
</table>
|
2487
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2488
|
+
<tr>
|
2489
|
+
<td>
|
2490
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2491
|
+
<tr>
|
2492
|
+
<td>
|
2493
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2494
|
+
<tr>
|
2495
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2496
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2497
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2498
|
+
</tr>
|
2499
|
+
</table>
|
2500
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2501
|
+
<tr>
|
2502
|
+
<td><div align="right">
|
2503
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7501745/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLOBETA 400 Tabletten' bestellen" title=" 1 x 'ACICLOBETA 400 Tabletten' bestellen " /></a>
|
2504
|
+
</div>
|
2505
|
+
</td>
|
2506
|
+
</tr>
|
2507
|
+
</table>
|
2508
|
+
</td>
|
2509
|
+
</tr>
|
2510
|
+
</table>
|
2511
|
+
</td>
|
2512
|
+
</tr>
|
2513
|
+
</table>
|
2514
|
+
</td>
|
2515
|
+
</tr>
|
2516
|
+
<tr>
|
2517
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2518
|
+
</td>
|
2519
|
+
<td width="5"></td>
|
2520
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLOBETA 800 Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p7501751_aciclobeta-800-tabletten.html">ACICLOBETA 800 Tabletten</a></h2></td>
|
2521
|
+
</tr>
|
2522
|
+
<tr>
|
2523
|
+
<td></td>
|
2524
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2525
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2526
|
+
<tr>
|
2527
|
+
<td align="right" class="main2">
|
2528
|
+
<strong> 26,12 EUR </strong><br />
|
2529
|
+
</td>
|
2530
|
+
</tr>
|
2531
|
+
<tr>
|
2532
|
+
<td align="right" class="main">
|
2533
|
+
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>
|
2534
|
+
</td>
|
2535
|
+
</tr>
|
2536
|
+
</table>
|
2537
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2538
|
+
<tr height="5">
|
2539
|
+
<td height="5"></td>
|
2540
|
+
</tr>
|
2541
|
+
<tr>
|
2542
|
+
<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>
|
2543
|
+
</tr>
|
2544
|
+
<tr height="5">
|
2545
|
+
<td height="5"></td>
|
2546
|
+
</tr>
|
2547
|
+
</table>
|
2548
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2549
|
+
<tr height="15">
|
2550
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2551
|
+
</td>
|
2552
|
+
<td align="left" valign="top" height="15">
|
2553
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2554
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2555
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2556
|
+
</font></a>
|
2557
|
+
</td>
|
2558
|
+
</tr>
|
2559
|
+
<tr height="15">
|
2560
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2561
|
+
</td>
|
2562
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2563
|
+
35 St Tabletten
|
2564
|
+
</td>
|
2565
|
+
</tr>
|
2566
|
+
<tr height="15">
|
2567
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2568
|
+
</td>
|
2569
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2570
|
+
<a class="liste" title="ACICLOBETA 800 Tabletten von BETAPHARM ARZNEIM.GMBH" href="advanced_search_result.php?keywords=BETAPHARM ARZNEIM.GMBH">BETAPHARM ARZNEIM.GMBH</a>
|
2571
|
+
</td>
|
2572
|
+
</tr>
|
2573
|
+
</table>
|
2574
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2575
|
+
<tr>
|
2576
|
+
<td>
|
2577
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2578
|
+
<tr>
|
2579
|
+
<td>
|
2580
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2581
|
+
<tr>
|
2582
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2583
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
2584
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
2585
|
+
</tr>
|
2586
|
+
</table>
|
2587
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2588
|
+
<tr>
|
2589
|
+
<td><div align="right">
|
2590
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7501751/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLOBETA 800 Tabletten' bestellen" title=" 1 x 'ACICLOBETA 800 Tabletten' bestellen " /></a>
|
2591
|
+
</div>
|
2592
|
+
</td>
|
2593
|
+
</tr>
|
2594
|
+
</table>
|
2595
|
+
</td>
|
2596
|
+
</tr>
|
2597
|
+
</table>
|
2598
|
+
</td>
|
2599
|
+
</tr>
|
2600
|
+
</table>
|
2601
|
+
</td>
|
2602
|
+
</tr>
|
2603
|
+
<tr>
|
2604
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2605
|
+
</td>
|
2606
|
+
<td width="5"></td>
|
2607
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLOBETA Creme" href="http://www.apotheke-online-internet.de/a/ac/p7518869_aciclobeta-creme.html">ACICLOBETA Creme</a></h2></td>
|
2608
|
+
</tr>
|
2609
|
+
<tr>
|
2610
|
+
<td></td>
|
2611
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2612
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2613
|
+
<tr>
|
2614
|
+
<td align="right" class="main2">
|
2615
|
+
<strong> 11,17 EUR </strong><br />
|
2616
|
+
</td>
|
2617
|
+
</tr>
|
2618
|
+
<tr>
|
2619
|
+
<td align="right" class="main">
|
2620
|
+
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>
|
2621
|
+
</td>
|
2622
|
+
</tr>
|
2623
|
+
</table>
|
2624
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2625
|
+
<tr height="15">
|
2626
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2627
|
+
</td>
|
2628
|
+
<td align="left" valign="top" height="15">
|
2629
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2630
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2631
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2632
|
+
</font></a>
|
2633
|
+
</td>
|
2634
|
+
</tr>
|
2635
|
+
<tr height="15">
|
2636
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2637
|
+
</td>
|
2638
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2639
|
+
2 g Creme
|
2640
|
+
</td>
|
2641
|
+
</tr>
|
2642
|
+
<tr height="15">
|
2643
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2644
|
+
</td>
|
2645
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2646
|
+
<a class="liste" title="ACICLOBETA Creme von BETAPHARM ARZNEIM.GMBH" href="advanced_search_result.php?keywords=BETAPHARM ARZNEIM.GMBH">BETAPHARM ARZNEIM.GMBH</a>
|
2647
|
+
</td>
|
2648
|
+
</tr>
|
2649
|
+
</table>
|
2650
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2651
|
+
<tr>
|
2652
|
+
<td>
|
2653
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2654
|
+
<tr>
|
2655
|
+
<td>
|
2656
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2657
|
+
<tr>
|
2658
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2659
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2660
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2661
|
+
</tr>
|
2662
|
+
</table>
|
2663
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2664
|
+
<tr>
|
2665
|
+
<td><div align="right">
|
2666
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7518869/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLOBETA Creme' bestellen" title=" 1 x 'ACICLOBETA Creme' bestellen " /></a>
|
2667
|
+
</div>
|
2668
|
+
</td>
|
2669
|
+
</tr>
|
2670
|
+
</table>
|
2671
|
+
</td>
|
2672
|
+
</tr>
|
2673
|
+
</table>
|
2674
|
+
</td>
|
2675
|
+
</tr>
|
2676
|
+
</table>
|
2677
|
+
</td>
|
2678
|
+
</tr>
|
2679
|
+
<tr>
|
2680
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2681
|
+
</td>
|
2682
|
+
<td width="5"></td>
|
2683
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLOBETA Creme" href="http://www.apotheke-online-internet.de/a/ac/p7518875_aciclobeta-creme.html">ACICLOBETA Creme</a></h2></td>
|
2684
|
+
</tr>
|
2685
|
+
<tr>
|
2686
|
+
<td></td>
|
2687
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2688
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2689
|
+
<tr>
|
2690
|
+
<td align="right" class="main2">
|
2691
|
+
<strong> 12,86 EUR </strong><br />
|
2692
|
+
</td>
|
2693
|
+
</tr>
|
2694
|
+
<tr>
|
2695
|
+
<td align="right" class="main">
|
2696
|
+
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>
|
2697
|
+
</td>
|
2698
|
+
</tr>
|
2699
|
+
</table>
|
2700
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2701
|
+
<tr height="15">
|
2702
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2703
|
+
</td>
|
2704
|
+
<td align="left" valign="top" height="15">
|
2705
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2706
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2707
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2708
|
+
</font></a>
|
2709
|
+
</td>
|
2710
|
+
</tr>
|
2711
|
+
<tr height="15">
|
2712
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2713
|
+
</td>
|
2714
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2715
|
+
5 g Creme
|
2716
|
+
</td>
|
2717
|
+
</tr>
|
2718
|
+
<tr height="15">
|
2719
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2720
|
+
</td>
|
2721
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2722
|
+
<a class="liste" title="ACICLOBETA Creme von BETAPHARM ARZNEIM.GMBH" href="advanced_search_result.php?keywords=BETAPHARM ARZNEIM.GMBH">BETAPHARM ARZNEIM.GMBH</a>
|
2723
|
+
</td>
|
2724
|
+
</tr>
|
2725
|
+
</table>
|
2726
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2727
|
+
<tr>
|
2728
|
+
<td>
|
2729
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2730
|
+
<tr>
|
2731
|
+
<td>
|
2732
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2733
|
+
<tr>
|
2734
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2735
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2736
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2737
|
+
</tr>
|
2738
|
+
</table>
|
2739
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2740
|
+
<tr>
|
2741
|
+
<td><div align="right">
|
2742
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7518875/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLOBETA Creme' bestellen" title=" 1 x 'ACICLOBETA Creme' bestellen " /></a>
|
2743
|
+
</div>
|
2744
|
+
</td>
|
2745
|
+
</tr>
|
2746
|
+
</table>
|
2747
|
+
</td>
|
2748
|
+
</tr>
|
2749
|
+
</table>
|
2750
|
+
</td>
|
2751
|
+
</tr>
|
2752
|
+
</table>
|
2753
|
+
</td>
|
2754
|
+
</tr>
|
2755
|
+
<tr>
|
2756
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2757
|
+
</td>
|
2758
|
+
<td width="5"></td>
|
2759
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLOBETA Lippenherpes Creme" href="http://www.apotheke-online-internet.de/hauterkrankungen/herpes/p7518881_aciclobeta-lippenherpes-creme.html">ACICLOBETA Lippenherpes Creme</a></h2></td>
|
2760
|
+
</tr>
|
2761
|
+
<tr>
|
2762
|
+
<td></td>
|
2763
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2764
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2765
|
+
<tr>
|
2766
|
+
<td align="right" class="main2">
|
2767
|
+
<strong> 3,87 EUR </strong><br />
|
2768
|
+
</td>
|
2769
|
+
</tr>
|
2770
|
+
<tr>
|
2771
|
+
<td align="right" class="main">
|
2772
|
+
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>
|
2773
|
+
</td>
|
2774
|
+
</tr>
|
2775
|
+
</table>
|
2776
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2777
|
+
<tr height="15">
|
2778
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2779
|
+
</td>
|
2780
|
+
<td align="left" valign="top" height="15">
|
2781
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
2782
|
+
Rezeptfrei</font> </font></a>
|
2783
|
+
</td>
|
2784
|
+
</tr>
|
2785
|
+
<tr height="15">
|
2786
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2787
|
+
</td>
|
2788
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2789
|
+
2 g Creme
|
2790
|
+
</td>
|
2791
|
+
</tr>
|
2792
|
+
<tr height="15">
|
2793
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2794
|
+
</td>
|
2795
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2796
|
+
<a class="liste" title="ACICLOBETA Lippenherpes Creme von BETAPHARM ARZNEIM.GMBH" href="advanced_search_result.php?keywords=BETAPHARM ARZNEIM.GMBH">BETAPHARM ARZNEIM.GMBH</a>
|
2797
|
+
</td>
|
2798
|
+
</tr>
|
2799
|
+
</table>
|
2800
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2801
|
+
<tr>
|
2802
|
+
<td>
|
2803
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2804
|
+
<tr>
|
2805
|
+
<td>
|
2806
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2807
|
+
<tr>
|
2808
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2809
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2810
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2811
|
+
</tr>
|
2812
|
+
</table>
|
2813
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2814
|
+
<tr>
|
2815
|
+
<td><div align="right">
|
2816
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/7518881/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLOBETA Lippenherpes Creme' bestellen" title=" 1 x 'ACICLOBETA Lippenherpes Creme' bestellen " /></a>
|
2817
|
+
</div>
|
2818
|
+
</td>
|
2819
|
+
</tr>
|
2820
|
+
</table>
|
2821
|
+
</td>
|
2822
|
+
</tr>
|
2823
|
+
</table>
|
2824
|
+
</td>
|
2825
|
+
</tr>
|
2826
|
+
</table>
|
2827
|
+
</td>
|
2828
|
+
</tr>
|
2829
|
+
<tr>
|
2830
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
2831
|
+
</td>
|
2832
|
+
<td width="5"></td>
|
2833
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACICLOSTAD 200 mg Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p6873143_aciclostad-200-mg-tabletten.html">ACICLOSTAD 200 mg Tabletten</a></h2></td>
|
2834
|
+
</tr>
|
2835
|
+
<tr>
|
2836
|
+
<td></td>
|
2837
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
2838
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2839
|
+
<tr>
|
2840
|
+
<td align="right" class="main2">
|
2841
|
+
<strong> 13,41 EUR </strong><br />
|
2842
|
+
</td>
|
2843
|
+
</tr>
|
2844
|
+
<tr>
|
2845
|
+
<td align="right" class="main">
|
2846
|
+
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>
|
2847
|
+
</td>
|
2848
|
+
</tr>
|
2849
|
+
</table>
|
2850
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2851
|
+
<tr height="5">
|
2852
|
+
<td height="5"></td>
|
2853
|
+
</tr>
|
2854
|
+
<tr>
|
2855
|
+
<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>
|
2856
|
+
</tr>
|
2857
|
+
<tr height="5">
|
2858
|
+
<td height="5"></td>
|
2859
|
+
</tr>
|
2860
|
+
</table>
|
2861
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2862
|
+
<tr height="15">
|
2863
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
2864
|
+
</td>
|
2865
|
+
<td align="left" valign="top" height="15">
|
2866
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
2867
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
2868
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
2869
|
+
</font></a>
|
2870
|
+
</td>
|
2871
|
+
</tr>
|
2872
|
+
<tr height="15">
|
2873
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
2874
|
+
</td>
|
2875
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2876
|
+
25 St Tabletten
|
2877
|
+
</td>
|
2878
|
+
</tr>
|
2879
|
+
<tr height="15">
|
2880
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
2881
|
+
</td>
|
2882
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
2883
|
+
<a class="liste" title="ACICLOSTAD 200 mg Tabletten von STADAPHARM GMBH" href="advanced_search_result.php?keywords=STADAPHARM GMBH">STADAPHARM GMBH</a>
|
2884
|
+
</td>
|
2885
|
+
</tr>
|
2886
|
+
</table>
|
2887
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2888
|
+
<tr>
|
2889
|
+
<td>
|
2890
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
2891
|
+
<tr>
|
2892
|
+
<td>
|
2893
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
2894
|
+
<tr>
|
2895
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
2896
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
2897
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
2898
|
+
</tr>
|
2899
|
+
</table>
|
2900
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
2901
|
+
<tr>
|
2902
|
+
<td><div align="right">
|
2903
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/6873143/cat/4002/category/AC/page/27"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACICLOSTAD 200 mg Tabletten' bestellen" title=" 1 x 'ACICLOSTAD 200 mg Tabletten' bestellen " /></a>
|
2904
|
+
</div>
|
2905
|
+
</td>
|
2906
|
+
</tr>
|
2907
|
+
</table>
|
2908
|
+
</td>
|
2909
|
+
</tr>
|
2910
|
+
</table>
|
2911
|
+
</td>
|
2912
|
+
</tr>
|
2913
|
+
</table>
|
2914
|
+
</td>
|
2915
|
+
</tr>
|
2916
|
+
</table>
|
2917
|
+
</td>
|
2918
|
+
</tr>
|
2919
|
+
</table>
|
2920
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
2921
|
+
<tr valign="top">
|
2922
|
+
<td class="main"><p>Artikel Verzeichnis alphabetisch AC</p>
|
2923
|
+
<p>Unsere Kunden suchen häufig:</p>
|
2924
|
+
<p>ACALYPHA Acarosan </p></td>
|
2925
|
+
<td align="right"> </td>
|
2926
|
+
</tr>
|
2927
|
+
</table>
|
2928
|
+
<table width="100%" border="0">
|
2929
|
+
<tr>
|
2930
|
+
<td align="left">
|
2931
|
+
<!--
|
2932
|
+
* Social Bookmark Script
|
2933
|
+
* @ Version 1.5
|
2934
|
+
* @ Copyright (C) 2006 by Alexander Hadj Hassine - All rights reserved
|
2935
|
+
* @ Website http://www.social-bookmark-script.de/
|
2936
|
+
* @
|
2937
|
+
* @ Bei Nutzung des Scripts muessen alle unsere Copyright-Hinweise und Links in dem Script selbst,
|
2938
|
+
* @ sowie in der Anzeige/Ausgabe unveraendert bleiben!
|
2939
|
+
* @
|
2940
|
+
* @ D.h., sie duerfen nicht entfernt, umgewandelt, versteckt oder unsichtbar gemacht werden,
|
2941
|
+
* @ es sei den Sie verlinken http://www.social-bookmark-script.de/ mindestens 1 mal
|
2942
|
+
* @ "suchmaschinenfreundlich" von Ihrer Startseite!
|
2943
|
+
-->
|
2944
|
+
<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>
|
2945
|
+
<div style="border-top-style:solid; padding-top:3px; border-top-width: 1px; border-top-color: #2A4956; float: center;">
|
2946
|
+
<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>
|
2947
|
+
<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>
|
2948
|
+
<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>
|
2949
|
+
<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>
|
2950
|
+
<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>
|
2951
|
+
<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>
|
2952
|
+
<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>
|
2953
|
+
<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>
|
2954
|
+
<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>
|
2955
|
+
<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>
|
2956
|
+
<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>
|
2957
|
+
<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>
|
2958
|
+
<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>
|
2959
|
+
<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>
|
2960
|
+
<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>
|
2961
|
+
<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>
|
2962
|
+
<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>
|
2963
|
+
<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>
|
2964
|
+
</div>
|
2965
|
+
</td>
|
2966
|
+
</tr>
|
2967
|
+
</table>
|
2968
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
2969
|
+
<tr height="10">
|
2970
|
+
<td align="center" valign="middle" height="20"><font size="1" face="verdana">Abbildungen können von Originalprodukten abweichen</font></td>
|
2971
|
+
</tr>
|
2972
|
+
<tr>
|
2973
|
+
<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>
|
2974
|
+
</tr>
|
2975
|
+
<tr>
|
2976
|
+
<td>
|
2977
|
+
<table border="0" width="100%" cellspacing="0" cellpadding="2">
|
2978
|
+
<tr>
|
2979
|
+
<td class="smallText">Zeige <b>781</b> bis <b>810</b> (von insgesamt <b>2285</b> Artikeln)</td>
|
2980
|
+
</tr>
|
2981
|
+
<tr>
|
2982
|
+
<td class="smallText" align="left">Seiten: <a href="http://www.apotheke-online-internet.de/a/ac-page-26.html" class="pageResults" title=" vorherige Seite ">[<< vorherige]</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-24.html" class="pageResults" title=" Vorhergehende 12 Seiten ">...</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-25.html" class="pageResults" title=" Seite 25 ">25</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-26.html" class="pageResults" title=" Seite 26 ">26</a> <b>27</b> <a href="http://www.apotheke-online-internet.de/a/ac-page-28.html" class="pageResults" title=" Seite 28 ">28</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-29.html" class="pageResults" title=" Seite 29 ">29</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-30.html" class="pageResults" title=" Seite 30 ">30</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-31.html" class="pageResults" title=" Seite 31 ">31</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-32.html" class="pageResults" title=" Seite 32 ">32</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-33.html" class="pageResults" title=" Seite 33 ">33</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-34.html" class="pageResults" title=" Seite 34 ">34</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-35.html" class="pageResults" title=" Seite 35 ">35</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-36.html" class="pageResults" title=" Seite 36 ">36</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-37.html" class="pageResults" title=" Nächste 12 Seiten ">...</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-28.html" class="pageResults" title=" nächste Seite ">[nächste >>]</a> </td>
|
2983
|
+
</tr>
|
2984
|
+
</table></td>
|
2985
|
+
</tr>
|
2986
|
+
|
2987
|
+
</table>
|
2988
|
+
</div>
|
2989
|
+
</div>
|
2990
|
+
<div style="width:800px;margin:0px auto;clear: both;">
|
2991
|
+
<div align="center" class="ifooter">
|
2992
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center">
|
2993
|
+
<tr>
|
2994
|
+
<td align="center" valign="top">
|
2995
|
+
<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>
|
2996
|
+
<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>
|
2997
|
+
<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>
|
2998
|
+
<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>
|
2999
|
+
<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>
|
3000
|
+
<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>
|
3001
|
+
<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>
|
3002
|
+
<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>
|
3003
|
+
<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>
|
3004
|
+
<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>
|
3005
|
+
<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>
|
3006
|
+
<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>
|
3007
|
+
<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>
|
3008
|
+
<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>
|
3009
|
+
<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>
|
3010
|
+
<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>
|
3011
|
+
<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>
|
3012
|
+
<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>
|
3013
|
+
<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>
|
3014
|
+
<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>
|
3015
|
+
<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>
|
3016
|
+
<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>
|
3017
|
+
<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>
|
3018
|
+
</td>
|
3019
|
+
</tr>
|
3020
|
+
</table>
|
3021
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
3022
|
+
<td align="center" valign="top">
|
3023
|
+
|
3024
|
+
|
3025
|
+
<table width="100%" border="0" cellpadding="2" cellspacing="0">
|
3026
|
+
<tr>
|
3027
|
+
<td class="infoBoxHeading_cloud">
|
3028
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
3029
|
+
<tr>
|
3030
|
+
<td align="left" class="infoBoxHeadingTitle">Unsere Kunden suchen</td>
|
3031
|
+
</tr>
|
3032
|
+
</table>
|
3033
|
+
</td>
|
3034
|
+
</tr>
|
3035
|
+
<tr>
|
3036
|
+
<td class="infoBoxHeading_cloud" align="left">
|
3037
|
+
<table width="95%" border="0" cellpadding="2" cellspacing="0">
|
3038
|
+
<tr>
|
3039
|
+
<td class="boxText">
|
3040
|
+
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
3041
|
+
<tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
|
3042
|
+
<tr>
|
3043
|
+
<td align="center" class="boxText">
|
3044
|
+
<a title="Aconit" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Aconit" style="font-size:13px; font-weight:400; color:#B19736;">Aconit</a>
|
3045
|
+
<a title="Bachblueten" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Bachblueten" style="font-size:10px; font-weight:200; color:#A0987B;">Bachblueten</a>
|
3046
|
+
<a title="Bayer Bepanthol" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Bayer+Bepanthol" style="font-size:12px; font-weight:300; color:#A7985E;">Bayer Bepanthol</a>
|
3047
|
+
<a title="Brain Kapseln" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Brain+Kapseln" style="font-size:13px; font-weight:400; color:#AE9743;">Brain Kapseln</a>
|
3048
|
+
<a title="Bromelain" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Bromelain" style="font-size:15px; font-weight:500; color:#B7971D;">Bromelain</a>
|
3049
|
+
<a title="Enthaarung" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Enthaarung" style="font-size:15px; font-weight:500; color:#B8971A;">Enthaarung</a>
|
3050
|
+
<a title="Hepatyrix" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Hepatyrix" style="font-size:12px; font-weight:300; color:#A8985A;">Hepatyrix</a>
|
3051
|
+
<a title="Hydroderm Fluid" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Hydroderm+Fluid" style="font-size:11px; font-weight:200; color:#A4986B;">Hydroderm Fluid</a>
|
3052
|
+
<a title="Ineov" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Ineov" style="font-size:9px; font-weight:100; color:#9B988F;">Ineov</a>
|
3053
|
+
<a title="Katheter" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Katheter" style="font-size:11px; font-weight:200; color:#A19877;">Katheter</a>
|
3054
|
+
<a title="Kindertee" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Kindertee" style="font-size:10px; font-weight:200; color:#9E9883;">Kindertee</a>
|
3055
|
+
<a title="Laxoberal" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Laxoberal" style="font-size:12px; font-weight:300; color:#A99756;">Laxoberal</a>
|
3056
|
+
<a title="Listerine cool citrus" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Listerine+cool+citrus" style="font-size:13px; font-weight:400; color:#B19737;">Listerine cool citrus</a>
|
3057
|
+
<a title="Lotemax" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Lotemax" style="font-size:11px; font-weight:200; color:#A29871;">Lotemax</a>
|
3058
|
+
<a title="Marax" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Marax" style="font-size:14px; font-weight:400; color:#B3972D;">Marax</a>
|
3059
|
+
<a title="Multilind" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Multilind" style="font-size:15px; font-weight:500; color:#B7971D;">Multilind</a>
|
3060
|
+
<a title="Neostrata 10" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Neostrata+10" style="font-size:12px; font-weight:300; color:#A99756;">Neostrata 10</a>
|
3061
|
+
<a title="Silomat DMP" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Silomat+DMP" style="font-size:13px; font-weight:400; color:#AF9740;">Silomat DMP</a>
|
3062
|
+
<a title="Somatuline" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Somatuline" style="font-size:13px; font-weight:400; color:#B19736;">Somatuline</a>
|
3063
|
+
<a title="Spardorf" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Spardorf" style="font-size:14px; font-weight:400; color:#B39730;">Spardorf</a>
|
3064
|
+
<a title="Totes Meer Salz" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Totes+Meer+Salz" style="font-size:13px; font-weight:400; color:#B19737;">Totes Meer Salz</a>
|
3065
|
+
<a title="Versandapotheke in Deutschland" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Versandapotheke+in+Deutschland" style="font-size:15px; font-weight:500; color:#BA9715;">Versandapotheke in Deutschland</a>
|
3066
|
+
<a title="arnica globuli" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=arnica+globuli" style="font-size:9px; font-weight:100; color:#999999;">arnica globuli</a>
|
3067
|
+
<a title="cromo hexal" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=cromo+hexal" style="font-size:11px; font-weight:200; color:#A29874;">cromo hexal</a>
|
3068
|
+
<a title="dr grandel hydro" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=dr+grandel+hydro" style="font-size:14px; font-weight:400; color:#B59725;">dr grandel hydro</a>
|
3069
|
+
<a title="inneov" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=inneov" style="font-size:9px; font-weight:100; color:#999999;">inneov</a>
|
3070
|
+
<a title="lierac morpho" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=lierac+morpho" style="font-size:15px; font-weight:500; color:#B8971C;">lierac morpho</a>
|
3071
|
+
<a title="mobilat duoaktiv" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=mobilat+duoaktiv" style="font-size:14px; font-weight:400; color:#B49729;">mobilat duoaktiv</a>
|
3072
|
+
<a title="quartamon med" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=quartamon+med" style="font-size:14px; font-weight:400; color:#B29733;">quartamon med</a>
|
3073
|
+
<a title="weleda sole" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=weleda+sole" style="font-size:11px; font-weight:200; color:#A49869;">weleda sole</a>
|
3074
|
+
</td>
|
3075
|
+
</tr>
|
3076
|
+
<tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
|
3077
|
+
<tr>
|
3078
|
+
<td valign="middle" class="boxText">
|
3079
|
+
<a href="http://www.suchmaschinenoptimierung-hamburg.de/xtc-modules/german/tag-cloud.html" target="_blank">Was ist es?</a>
|
3080
|
+
</td>
|
3081
|
+
</tr>
|
3082
|
+
</table>
|
3083
|
+
</td>
|
3084
|
+
</tr>
|
3085
|
+
</table>
|
3086
|
+
</td>
|
3087
|
+
</tr>
|
3088
|
+
</table>
|
3089
|
+
</td></tr></table>
|
3090
|
+
<table width="800" height="5" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
3091
|
+
<td align="center" valign="top"></td></tr></table>
|
3092
|
+
<table style="border-top: 2px solid; border-color: #3e7d52;" width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
3093
|
+
<td colspan="5" align="center" valign="top" bgcolor="white" width="800">
|
3094
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
3095
|
+
<td align="center" valign="top"></td></tr></table>
|
3096
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><tr>
|
3097
|
+
<td colspan="2" align="center" valign="top">
|
3098
|
+
<table width="100%" border="0" cellpadding="2" cellspacing="0"><tr>
|
3099
|
+
<td class="infoBoxcontent" align="center">
|
3100
|
+
<table width="95%" border="0" cellpadding="2" cellspacing="0"><tr>
|
3101
|
+
<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>
|
3102
|
+
</tr>
|
3103
|
+
<tr>
|
3104
|
+
<td align="center" valign="top">
|
3105
|
+
<a id="link2" href="a.html" target=_top>A</a>
|
3106
|
+
<a id="link2" href="b.html" target=_top>B</a>
|
3107
|
+
<a id="link2" href="c.html" target=_top>C</a>
|
3108
|
+
<a id="link2" href="d.html" target=_top>D</a>
|
3109
|
+
<a id="link2" href="e.html" target=_top>E</a>
|
3110
|
+
<a id="link2" href="f.html" target=_top>F</a>
|
3111
|
+
<a id="link2" href="g.html" target=_top>G</a>
|
3112
|
+
<a id="link2" href="h.html" target=_top>H</a>
|
3113
|
+
<a id="link2" href="i.html" target=_top>I</a>
|
3114
|
+
<a id="link2" href="j.html" target=_top>J</a>
|
3115
|
+
<a id="link2" href="k.html" target=_top>K</a>
|
3116
|
+
<a id="link2" href="l.html" target=_top>L</a>
|
3117
|
+
<a id="link2" href="m.html" target=_top>M</a>
|
3118
|
+
<a id="link2" href="n.html" target=_top>N</a>
|
3119
|
+
<a id="link2" href="o.html" target=_top>O</a>
|
3120
|
+
<a id="link2" href="p.html" target=_top>P</a>
|
3121
|
+
<a id="link2" href="q.html" target=_top>Q</a>
|
3122
|
+
<a id="link2" href="r.html" target=_top>R</a>
|
3123
|
+
<a id="link2" href="s.html" target=_top>S</a>
|
3124
|
+
<a id="link2" href="t.html" target=_top>T</a>
|
3125
|
+
<a id="link2" href="u.html" target=_top>U</a>
|
3126
|
+
<a id="link2" href="v.html" target=_top>V</a>
|
3127
|
+
<a id="link2" href="w.html" target=_top>W</a>
|
3128
|
+
<a id="link2" href="x.html" target=_top>X</a>
|
3129
|
+
<a id="link2" href="y.html" target=_top>Y</a>
|
3130
|
+
<a id="link2" href="z.html" target=_top>Z</a>
|
3131
|
+
</td></tr>
|
3132
|
+
<tr>
|
3133
|
+
<td align="center" valign="top">
|
3134
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-2.html" target=_top>A</a>
|
3135
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-3.html" target=_top>B</a>
|
3136
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-4.html" target=_top>C</a>
|
3137
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-5.html" target=_top>D</a>
|
3138
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-6.html" target=_top>E</a>
|
3139
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-7.html" target=_top>F</a>
|
3140
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-8.html" target=_top>G</a>
|
3141
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-9.html" target=_top>H</a>
|
3142
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-10.html" target=_top>I</a>
|
3143
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-11.html" target=_top>J</a>
|
3144
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-12.html" target=_top>K</a>
|
3145
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-13.html" target=_top>L</a>
|
3146
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-14.html" target=_top>M</a>
|
3147
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-15.html" target=_top>N</a>
|
3148
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-16.html" target=_top>O</a>
|
3149
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-17.html" target=_top>P</a>
|
3150
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-18.html" target=_top>Q</a>
|
3151
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-19.html" target=_top>R</a>
|
3152
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-20.html" target=_top>S</a>
|
3153
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-21.html" target=_top>T</a>
|
3154
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-22.html" target=_top>U</a>
|
3155
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-23.html" target=_top>V</a>
|
3156
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-24.html" target=_top>W</a>
|
3157
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-25.html" target=_top>X</a>
|
3158
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-26.html" target=_top>Y</a>
|
3159
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-27.html" target=_top>Z</a>
|
3160
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-28.html" target=_top>0-9</a>
|
3161
|
+
</td></tr></table></td></tr></table></td></tr></table>
|
3162
|
+
<table style="border-top: 1px solid; border-color: #3e7d52;" width="520" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><br>
|
3163
|
+
<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>
|
3164
|
+
</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>
|
3165
|
+
</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>
|
3166
|
+
</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>
|
3167
|
+
</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>
|