de.oddb 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- 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,1164 @@
|
|
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 ACULAR Augentropfen" href="http://www.apotheke-online-internet.de/a/ac/p4551205_acular-augentropfen.html">ACULAR Augentropfen</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> 45,78 EUR </strong><br />
|
541
|
+
</td>
|
542
|
+
</tr>
|
543
|
+
<tr>
|
544
|
+
<td align="right" class="main">
|
545
|
+
incl. 19 % UST exkl. <script language="javascript">document.write('<a href="javascript:newWin=void(window.open(\'http://www.apotheke-online-internet.de/popup_content.php/coID/1\', \'popup\', \'toolbar=0, scrollbars=yes, resizable=yes, height=400, width=400\'))">Versandkosten</a>');</script><noscript><a href="http://www.apotheke-online-internet.de/popup_content.php/coID/1" target="_blank">Versandkosten</a></noscript>
|
546
|
+
</td>
|
547
|
+
</tr>
|
548
|
+
</table>
|
549
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
550
|
+
<tr height="15">
|
551
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
552
|
+
</td>
|
553
|
+
<td align="left" valign="top" height="15">
|
554
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
555
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
556
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
557
|
+
</font></a>
|
558
|
+
</td>
|
559
|
+
</tr>
|
560
|
+
<tr height="15">
|
561
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
562
|
+
</td>
|
563
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
564
|
+
3X5 ml Augentropfen
|
565
|
+
</td>
|
566
|
+
</tr>
|
567
|
+
<tr height="15">
|
568
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Reimport:
|
569
|
+
</td>
|
570
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
571
|
+
ja
|
572
|
+
</td>
|
573
|
+
</tr>
|
574
|
+
<tr height="15">
|
575
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
576
|
+
</td>
|
577
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
578
|
+
<a class="liste" title="ACULAR Augentropfen von BERAGENA" href="advanced_search_result.php?keywords=BERAGENA">BERAGENA</a>
|
579
|
+
</td>
|
580
|
+
</tr>
|
581
|
+
</table>
|
582
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
583
|
+
<tr>
|
584
|
+
<td>
|
585
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
586
|
+
<tr>
|
587
|
+
<td>
|
588
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
589
|
+
<tr>
|
590
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
591
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
592
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
593
|
+
</tr>
|
594
|
+
</table>
|
595
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
596
|
+
<tr>
|
597
|
+
<td><div align="right">
|
598
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4551205/cat/4002/category/AC/page/77"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACULAR Augentropfen' bestellen" title=" 1 x 'ACULAR Augentropfen' bestellen " /></a>
|
599
|
+
</div>
|
600
|
+
</td>
|
601
|
+
</tr>
|
602
|
+
</table>
|
603
|
+
</td>
|
604
|
+
</tr>
|
605
|
+
</table>
|
606
|
+
</td>
|
607
|
+
</tr>
|
608
|
+
</table>
|
609
|
+
</td>
|
610
|
+
</tr>
|
611
|
+
<tr>
|
612
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
613
|
+
</td>
|
614
|
+
<td width="5"></td>
|
615
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACULAR Augentropfen" href="http://www.apotheke-online-internet.de/a/ac/p6319754_acular-augentropfen.html">ACULAR Augentropfen</a></h2></td>
|
616
|
+
</tr>
|
617
|
+
<tr>
|
618
|
+
<td></td>
|
619
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
620
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
621
|
+
<tr>
|
622
|
+
<td align="right" class="main2">
|
623
|
+
<strong> 24,79 EUR </strong><br />
|
624
|
+
</td>
|
625
|
+
</tr>
|
626
|
+
<tr>
|
627
|
+
<td align="right" class="main">
|
628
|
+
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>
|
629
|
+
</td>
|
630
|
+
</tr>
|
631
|
+
</table>
|
632
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
633
|
+
<tr height="15">
|
634
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
635
|
+
</td>
|
636
|
+
<td align="left" valign="top" height="15">
|
637
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
638
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
639
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
640
|
+
</font></a>
|
641
|
+
</td>
|
642
|
+
</tr>
|
643
|
+
<tr height="15">
|
644
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
645
|
+
</td>
|
646
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
647
|
+
5 ml Augentropfen
|
648
|
+
</td>
|
649
|
+
</tr>
|
650
|
+
<tr height="15">
|
651
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
652
|
+
</td>
|
653
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
654
|
+
<a class="liste" title="ACULAR Augentropfen von PHARM-ALLERGAN GMBH" href="advanced_search_result.php?keywords=PHARM-ALLERGAN GMBH">PHARM-ALLERGAN GMBH</a>
|
655
|
+
</td>
|
656
|
+
</tr>
|
657
|
+
</table>
|
658
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
659
|
+
<tr>
|
660
|
+
<td>
|
661
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
662
|
+
<tr>
|
663
|
+
<td>
|
664
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
665
|
+
<tr>
|
666
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
667
|
+
<td valign="left" width="15"><img src="admin/images/icons/status1.gif" alt="Sofort" /></td>
|
668
|
+
<td valign="left" class="main" width="200">Sofort</td>
|
669
|
+
</tr>
|
670
|
+
</table>
|
671
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
672
|
+
<tr>
|
673
|
+
<td><div align="right">
|
674
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/6319754/cat/4002/category/AC/page/77"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACULAR Augentropfen' bestellen" title=" 1 x 'ACULAR Augentropfen' bestellen " /></a>
|
675
|
+
</div>
|
676
|
+
</td>
|
677
|
+
</tr>
|
678
|
+
</table>
|
679
|
+
</td>
|
680
|
+
</tr>
|
681
|
+
</table>
|
682
|
+
</td>
|
683
|
+
</tr>
|
684
|
+
</table>
|
685
|
+
</td>
|
686
|
+
</tr>
|
687
|
+
<tr>
|
688
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
689
|
+
</td>
|
690
|
+
<td width="5"></td>
|
691
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACUTEK Pflaster f.Sof Set" href="http://www.apotheke-online-internet.de/a/ac/p637565_acutek-pflaster-f-sof-set.html">ACUTEK Pflaster f.Sof Set</a></h2></td>
|
692
|
+
</tr>
|
693
|
+
<tr>
|
694
|
+
<td></td>
|
695
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
696
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
697
|
+
<tr>
|
698
|
+
<td align="right" class="main2">
|
699
|
+
<strong> 25,43 EUR </strong><br />
|
700
|
+
</td>
|
701
|
+
</tr>
|
702
|
+
<tr>
|
703
|
+
<td align="right" class="main">
|
704
|
+
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>
|
705
|
+
</td>
|
706
|
+
</tr>
|
707
|
+
</table>
|
708
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
709
|
+
<tr height="15">
|
710
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
711
|
+
</td>
|
712
|
+
<td align="left" valign="top" height="15">
|
713
|
+
<font size="1" face="Verdana,Geneva,Arial,Sans-serif">
|
714
|
+
Rezeptfrei</font> </font></a>
|
715
|
+
</td>
|
716
|
+
</tr>
|
717
|
+
<tr height="15">
|
718
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
719
|
+
</td>
|
720
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
721
|
+
1X50 St Pflaster
|
722
|
+
</td>
|
723
|
+
</tr>
|
724
|
+
<tr height="15">
|
725
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
726
|
+
</td>
|
727
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
728
|
+
<a class="liste" title="ACUTEK Pflaster f.Sof Set von MEDTRONIC MINIMED" href="advanced_search_result.php?keywords=MEDTRONIC MINIMED">MEDTRONIC MINIMED</a>
|
729
|
+
</td>
|
730
|
+
</tr>
|
731
|
+
</table>
|
732
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
733
|
+
<tr>
|
734
|
+
<td>
|
735
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
736
|
+
<tr>
|
737
|
+
<td>
|
738
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
739
|
+
<tr>
|
740
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
741
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
742
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
743
|
+
</tr>
|
744
|
+
</table>
|
745
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
746
|
+
<tr>
|
747
|
+
<td><div align="right">
|
748
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/637565/cat/4002/category/AC/page/77"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACUTEK Pflaster f.Sof Set' bestellen" title=" 1 x 'ACUTEK Pflaster f.Sof Set' bestellen " /></a>
|
749
|
+
</div>
|
750
|
+
</td>
|
751
|
+
</tr>
|
752
|
+
</table>
|
753
|
+
</td>
|
754
|
+
</tr>
|
755
|
+
</table>
|
756
|
+
</td>
|
757
|
+
</tr>
|
758
|
+
</table>
|
759
|
+
</td>
|
760
|
+
</tr>
|
761
|
+
<tr>
|
762
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
763
|
+
</td>
|
764
|
+
<td width="5"></td>
|
765
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACYCLOVIR Denk 200 mg Tabletten" href="http://www.apotheke-online-internet.de/a/ac/p3567256_acyclovir-denk-200-mg-tabletten.html">ACYCLOVIR Denk 200 mg Tabletten</a></h2></td>
|
766
|
+
</tr>
|
767
|
+
<tr>
|
768
|
+
<td></td>
|
769
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
770
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
771
|
+
<tr>
|
772
|
+
<td align="right" class="main2">
|
773
|
+
<strong> 28,93 EUR </strong><br />
|
774
|
+
</td>
|
775
|
+
</tr>
|
776
|
+
<tr>
|
777
|
+
<td align="right" class="main">
|
778
|
+
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>
|
779
|
+
</td>
|
780
|
+
</tr>
|
781
|
+
</table>
|
782
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
783
|
+
<tr height="15">
|
784
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
785
|
+
</td>
|
786
|
+
<td align="left" valign="top" height="15">
|
787
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
788
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
789
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
790
|
+
</font></a>
|
791
|
+
</td>
|
792
|
+
</tr>
|
793
|
+
<tr height="15">
|
794
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
795
|
+
</td>
|
796
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
797
|
+
25 St Tabletten
|
798
|
+
</td>
|
799
|
+
</tr>
|
800
|
+
<tr height="15">
|
801
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
802
|
+
</td>
|
803
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
804
|
+
<a class="liste" title="ACYCLOVIR Denk 200 mg Tabletten von DENK PHARMA GMBH&CO.KG" href="advanced_search_result.php?keywords=DENK PHARMA GMBH&CO.KG">DENK PHARMA GMBH&CO.KG</a>
|
805
|
+
</td>
|
806
|
+
</tr>
|
807
|
+
</table>
|
808
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
809
|
+
<tr>
|
810
|
+
<td>
|
811
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
812
|
+
<tr>
|
813
|
+
<td>
|
814
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
815
|
+
<tr>
|
816
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
817
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
818
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
819
|
+
</tr>
|
820
|
+
</table>
|
821
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
822
|
+
<tr>
|
823
|
+
<td><div align="right">
|
824
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/3567256/cat/4002/category/AC/page/77"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACYCLOVIR Denk 200 mg Tabletten' bestellen" title=" 1 x 'ACYCLOVIR Denk 200 mg Tabletten' bestellen " /></a>
|
825
|
+
</div>
|
826
|
+
</td>
|
827
|
+
</tr>
|
828
|
+
</table>
|
829
|
+
</td>
|
830
|
+
</tr>
|
831
|
+
</table>
|
832
|
+
</td>
|
833
|
+
</tr>
|
834
|
+
</table>
|
835
|
+
</td>
|
836
|
+
</tr>
|
837
|
+
<tr>
|
838
|
+
<td rowspan="2" align="left" valign="top"> <br />
|
839
|
+
</td>
|
840
|
+
<td width="5"></td>
|
841
|
+
<td align="left"><h2><a title="Weitere Informationen zu ACYCLOVIR Denk 5 prozent Cream" href="http://www.apotheke-online-internet.de/a/ac/p4555924_acyclovir-denk-5-prozent-cream.html">ACYCLOVIR Denk 5 prozent Cream</a></h2></td>
|
842
|
+
</tr>
|
843
|
+
<tr>
|
844
|
+
<td></td>
|
845
|
+
<td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">
|
846
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
847
|
+
<tr>
|
848
|
+
<td align="right" class="main2">
|
849
|
+
<strong> 13,30 EUR </strong><br />
|
850
|
+
</td>
|
851
|
+
</tr>
|
852
|
+
<tr>
|
853
|
+
<td align="right" class="main">
|
854
|
+
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>
|
855
|
+
</td>
|
856
|
+
</tr>
|
857
|
+
</table>
|
858
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
859
|
+
<tr height="15">
|
860
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Abgabehinweis:
|
861
|
+
</td>
|
862
|
+
<td align="left" valign="top" height="15">
|
863
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif">Rezeptpflichtig</font>
|
864
|
+
<a href="http://www.pharma24.de/wie-rx-bestellen.html" target="_top">
|
865
|
+
<font size="1" color="#cc2631" face="Verdana,Geneva,Arial,Sans-serif"><b> Info!</b>
|
866
|
+
</font></a>
|
867
|
+
</td>
|
868
|
+
</tr>
|
869
|
+
<tr height="15">
|
870
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Packungsinhalt:
|
871
|
+
</td>
|
872
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
873
|
+
5 g Creme
|
874
|
+
</td>
|
875
|
+
</tr>
|
876
|
+
<tr height="15">
|
877
|
+
<td align="left" valign="top" width="100" height="15" class="productinfo">Produkt von:
|
878
|
+
</td>
|
879
|
+
<td align="left" valign="top" height="15" class="productinfosmall">
|
880
|
+
<a class="liste" title="ACYCLOVIR Denk 5 prozent Cream von DENK PHARMA GMBH&CO.KG" href="advanced_search_result.php?keywords=DENK PHARMA GMBH&CO.KG">DENK PHARMA GMBH&CO.KG</a>
|
881
|
+
</td>
|
882
|
+
</tr>
|
883
|
+
</table>
|
884
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
885
|
+
<tr>
|
886
|
+
<td>
|
887
|
+
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
888
|
+
<tr>
|
889
|
+
<td>
|
890
|
+
<table width="315" border="0" cellpadding="0" cellspacing="0">
|
891
|
+
<tr>
|
892
|
+
<td class="productinfo" width="100" valign="left">Verf�gbarkeit:</td>
|
893
|
+
<td valign="left" width="15"><img src="admin/images/icons/status3.gif" alt="z. Zeit nicht lieferbar" /></td>
|
894
|
+
<td valign="left" class="main" width="200">z. Zeit nicht lieferbar</td>
|
895
|
+
</tr>
|
896
|
+
</table>
|
897
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
898
|
+
<tr>
|
899
|
+
<td><div align="right">
|
900
|
+
<a href="http://www.apotheke-online-internet.de/index.php/action/buy_now/BUYproducts_id/4555924/cat/4002/category/AC/page/77"><img src="templates/ph24shop/buttons/german/button_buy_now.gif" alt="1 x 'ACYCLOVIR Denk 5 prozent Cream' bestellen" title=" 1 x 'ACYCLOVIR Denk 5 prozent Cream' bestellen " /></a>
|
901
|
+
</div>
|
902
|
+
</td>
|
903
|
+
</tr>
|
904
|
+
</table>
|
905
|
+
</td>
|
906
|
+
</tr>
|
907
|
+
</table>
|
908
|
+
</td>
|
909
|
+
</tr>
|
910
|
+
</table>
|
911
|
+
</td>
|
912
|
+
</tr>
|
913
|
+
</table>
|
914
|
+
</td>
|
915
|
+
</tr>
|
916
|
+
</table>
|
917
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
918
|
+
<tr valign="top">
|
919
|
+
<td class="main"><p>Artikel Verzeichnis alphabetisch AC</p>
|
920
|
+
<p>Unsere Kunden suchen häufig:</p>
|
921
|
+
<p>ACALYPHA Acarosan </p></td>
|
922
|
+
<td align="right"> </td>
|
923
|
+
</tr>
|
924
|
+
</table>
|
925
|
+
<table width="100%" border="0">
|
926
|
+
<tr>
|
927
|
+
<td align="left">
|
928
|
+
<!--
|
929
|
+
* Social Bookmark Script
|
930
|
+
* @ Version 1.5
|
931
|
+
* @ Copyright (C) 2006 by Alexander Hadj Hassine - All rights reserved
|
932
|
+
* @ Website http://www.social-bookmark-script.de/
|
933
|
+
* @
|
934
|
+
* @ Bei Nutzung des Scripts muessen alle unsere Copyright-Hinweise und Links in dem Script selbst,
|
935
|
+
* @ sowie in der Anzeige/Ausgabe unveraendert bleiben!
|
936
|
+
* @
|
937
|
+
* @ D.h., sie duerfen nicht entfernt, umgewandelt, versteckt oder unsichtbar gemacht werden,
|
938
|
+
* @ es sei den Sie verlinken http://www.social-bookmark-script.de/ mindestens 1 mal
|
939
|
+
* @ "suchmaschinenfreundlich" von Ihrer Startseite!
|
940
|
+
-->
|
941
|
+
<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>
|
942
|
+
<div style="border-top-style:solid; padding-top:3px; border-top-width: 1px; border-top-color: #2A4956; float: center;">
|
943
|
+
<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>
|
944
|
+
<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>
|
945
|
+
<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>
|
946
|
+
<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>
|
947
|
+
<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>
|
948
|
+
<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>
|
949
|
+
<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>
|
950
|
+
<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>
|
951
|
+
<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>
|
952
|
+
<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>
|
953
|
+
<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>
|
954
|
+
<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>
|
955
|
+
<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>
|
956
|
+
<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>
|
957
|
+
<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>
|
958
|
+
<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>
|
959
|
+
<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>
|
960
|
+
<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>
|
961
|
+
</div>
|
962
|
+
</td>
|
963
|
+
</tr>
|
964
|
+
</table>
|
965
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
966
|
+
<tr height="10">
|
967
|
+
<td align="center" valign="middle" height="20"><font size="1" face="verdana">Abbildungen können von Originalprodukten abweichen</font></td>
|
968
|
+
</tr>
|
969
|
+
<tr>
|
970
|
+
<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>
|
971
|
+
</tr>
|
972
|
+
<tr>
|
973
|
+
<td>
|
974
|
+
<table border="0" width="100%" cellspacing="0" cellpadding="2">
|
975
|
+
<tr>
|
976
|
+
<td class="smallText">Zeige <b>2281</b> bis <b>2285</b> (von insgesamt <b>2285</b> Artikeln)</td>
|
977
|
+
</tr>
|
978
|
+
<tr>
|
979
|
+
<td class="smallText" align="left">Seiten: <a href="http://www.apotheke-online-internet.de/a/ac-page-76.html" class="pageResults" title=" vorherige Seite ">[<< vorherige]</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-72.html" class="pageResults" title=" Vorhergehende 12 Seiten ">...</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-73.html" class="pageResults" title=" Seite 73 ">73</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-74.html" class="pageResults" title=" Seite 74 ">74</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-75.html" class="pageResults" title=" Seite 75 ">75</a> <a href="http://www.apotheke-online-internet.de/a/ac-page-76.html" class="pageResults" title=" Seite 76 ">76</a> <b>77</b> </td>
|
980
|
+
</tr>
|
981
|
+
</table></td>
|
982
|
+
</tr>
|
983
|
+
|
984
|
+
</table>
|
985
|
+
</div>
|
986
|
+
</div>
|
987
|
+
<div style="width:800px;margin:0px auto;clear: both;">
|
988
|
+
<div align="center" class="ifooter">
|
989
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center">
|
990
|
+
<tr>
|
991
|
+
<td align="center" valign="top">
|
992
|
+
<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>
|
993
|
+
<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>
|
994
|
+
<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>
|
995
|
+
<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>
|
996
|
+
<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>
|
997
|
+
<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>
|
998
|
+
<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>
|
999
|
+
<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>
|
1000
|
+
<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>
|
1001
|
+
<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>
|
1002
|
+
<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>
|
1003
|
+
<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>
|
1004
|
+
<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>
|
1005
|
+
<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>
|
1006
|
+
<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>
|
1007
|
+
<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>
|
1008
|
+
<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>
|
1009
|
+
<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>
|
1010
|
+
<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>
|
1011
|
+
<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>
|
1012
|
+
<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>
|
1013
|
+
<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>
|
1014
|
+
<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>
|
1015
|
+
</td>
|
1016
|
+
</tr>
|
1017
|
+
</table>
|
1018
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
1019
|
+
<td align="center" valign="top">
|
1020
|
+
|
1021
|
+
|
1022
|
+
<table width="100%" border="0" cellpadding="2" cellspacing="0">
|
1023
|
+
<tr>
|
1024
|
+
<td class="infoBoxHeading_cloud">
|
1025
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1026
|
+
<tr>
|
1027
|
+
<td align="left" class="infoBoxHeadingTitle">Unsere Kunden suchen</td>
|
1028
|
+
</tr>
|
1029
|
+
</table>
|
1030
|
+
</td>
|
1031
|
+
</tr>
|
1032
|
+
<tr>
|
1033
|
+
<td class="infoBoxHeading_cloud" align="left">
|
1034
|
+
<table width="95%" border="0" cellpadding="2" cellspacing="0">
|
1035
|
+
<tr>
|
1036
|
+
<td class="boxText">
|
1037
|
+
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
1038
|
+
<tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
|
1039
|
+
<tr>
|
1040
|
+
<td align="center" class="boxText">
|
1041
|
+
<a title="Amino Loges" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Amino+Loges" style="font-size:11px; font-weight:300; color:#A69864;">Amino Loges</a>
|
1042
|
+
<a title="Bronchiselect" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Bronchiselect" style="font-size:15px; font-weight:500; color:#B8971A;">Bronchiselect</a>
|
1043
|
+
<a title="Calcium Sandoz forte" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Calcium+Sandoz+forte" style="font-size:13px; font-weight:400; color:#B19736;">Calcium Sandoz forte</a>
|
1044
|
+
<a title="Deumavan Creme" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Deumavan+Creme" style="font-size:13px; font-weight:300; color:#AD9748;">Deumavan Creme</a>
|
1045
|
+
<a title="Dolormin naproxen" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Dolormin+naproxen" style="font-size:14px; font-weight:400; color:#B39730;">Dolormin naproxen</a>
|
1046
|
+
<a title="Ephepect" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Ephepect" style="font-size:15px; font-weight:500; color:#B7971F;">Ephepect</a>
|
1047
|
+
<a title="Ferrum Phosphoricum" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Ferrum+Phosphoricum" style="font-size:11px; font-weight:200; color:#A4986B;">Ferrum Phosphoricum</a>
|
1048
|
+
<a title="Korodin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Korodin" style="font-size:14px; font-weight:400; color:#B4972A;">Korodin</a>
|
1049
|
+
<a title="Ladival Gel" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Ladival+Gel" style="font-size:15px; font-weight:500; color:#B89719;">Ladival Gel</a>
|
1050
|
+
<a title="Laxopol" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Laxopol" style="font-size:13px; font-weight:400; color:#AD9745;">Laxopol</a>
|
1051
|
+
<a title="Mertina" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Mertina" style="font-size:12px; font-weight:300; color:#A7985E;">Mertina</a>
|
1052
|
+
<a title="Omnifix Elastic" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Omnifix+Elastic" style="font-size:14px; font-weight:500; color:#B69724;">Omnifix Elastic</a>
|
1053
|
+
<a title="Pagasling" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Pagasling" style="font-size:15px; font-weight:500; color:#B8971A;">Pagasling</a>
|
1054
|
+
<a title="Phytohustil" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Phytohustil" style="font-size:14px; font-weight:400; color:#B3972F;">Phytohustil</a>
|
1055
|
+
<a title="Pinimenthol mild" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Pinimenthol+mild" style="font-size:11px; font-weight:200; color:#A3986E;">Pinimenthol mild</a>
|
1056
|
+
<a title="Sch�ssler Salze dhu" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Sch%FCssler+Salze+dhu" style="font-size:10px; font-weight:200; color:#9E9881;">Sch�ssler Salze dhu</a>
|
1057
|
+
<a title="Sonnenmilch" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Sonnenmilch" style="font-size:12px; font-weight:300; color:#AA9751;">Sonnenmilch</a>
|
1058
|
+
<a title="Typhoral" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Typhoral" style="font-size:14px; font-weight:400; color:#B59727;">Typhoral</a>
|
1059
|
+
<a title="Valafit" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Valafit" style="font-size:12px; font-weight:300; color:#A99858;">Valafit</a>
|
1060
|
+
<a title="Versandapotheke Berlin" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Versandapotheke+Berlin" style="font-size:14px; font-weight:400; color:#B3972F;">Versandapotheke Berlin</a>
|
1061
|
+
<a title="Viscum" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=Viscum" style="font-size:13px; font-weight:300; color:#AC974B;">Viscum</a>
|
1062
|
+
<a title="after sun" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=after+sun" style="font-size:10px; font-weight:200; color:#9E9881;">after sun</a>
|
1063
|
+
<a title="argentum nitricum" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=argentum+nitricum" style="font-size:14px; font-weight:400; color:#B29733;">argentum nitricum</a>
|
1064
|
+
<a title="hekla lava d 6" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=hekla+lava+d+6" style="font-size:11px; font-weight:200; color:#A29872;">hekla lava d 6</a>
|
1065
|
+
<a title="heuschnupfen nasenspray" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=heuschnupfen+nasenspray" style="font-size:14px; font-weight:500; color:#B69721;">heuschnupfen nasenspray</a>
|
1066
|
+
<a title="medacalm" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=medacalm" style="font-size:15px; font-weight:500; color:#BA9715;">medacalm</a>
|
1067
|
+
<a title="neocate advance" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=neocate+advance" style="font-size:13px; font-weight:400; color:#B19736;">neocate advance</a>
|
1068
|
+
<a title="organon" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=organon" style="font-size:9px; font-weight:100; color:#999999;">organon</a>
|
1069
|
+
<a title="pro symbio flor" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=pro+symbio+flor" style="font-size:11px; font-weight:300; color:#A59865;">pro symbio flor</a>
|
1070
|
+
<a title="selen ace" href="http://www.apotheke-online-internet.de/advanced_search_result.php?keywords=selen+ace" style="font-size:14px; font-weight:400; color:#B4972A;">selen ace</a>
|
1071
|
+
</td>
|
1072
|
+
</tr>
|
1073
|
+
<tr><td><img src="templates/ph24shop/img/pixel_trans.gif" alt="" width="1" height="5" /></td></tr>
|
1074
|
+
<tr>
|
1075
|
+
<td valign="middle" class="boxText">
|
1076
|
+
<a href="http://www.suchmaschinenoptimierung-hamburg.de/xtc-modules/german/tag-cloud.html" target="_blank">Was ist es?</a>
|
1077
|
+
</td>
|
1078
|
+
</tr>
|
1079
|
+
</table>
|
1080
|
+
</td>
|
1081
|
+
</tr>
|
1082
|
+
</table>
|
1083
|
+
</td>
|
1084
|
+
</tr>
|
1085
|
+
</table>
|
1086
|
+
</td></tr></table>
|
1087
|
+
<table width="800" height="5" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
1088
|
+
<td align="center" valign="top"></td></tr></table>
|
1089
|
+
<table style="border-top: 2px solid; border-color: #3e7d52;" width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
1090
|
+
<td colspan="5" align="center" valign="top" bgcolor="white" width="800">
|
1091
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center"><tr>
|
1092
|
+
<td align="center" valign="top"></td></tr></table>
|
1093
|
+
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><tr>
|
1094
|
+
<td colspan="2" align="center" valign="top">
|
1095
|
+
<table width="100%" border="0" cellpadding="2" cellspacing="0"><tr>
|
1096
|
+
<td class="infoBoxcontent" align="center">
|
1097
|
+
<table width="95%" border="0" cellpadding="2" cellspacing="0"><tr>
|
1098
|
+
<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>
|
1099
|
+
</tr>
|
1100
|
+
<tr>
|
1101
|
+
<td align="center" valign="top">
|
1102
|
+
<a id="link2" href="a.html" target=_top>A</a>
|
1103
|
+
<a id="link2" href="b.html" target=_top>B</a>
|
1104
|
+
<a id="link2" href="c.html" target=_top>C</a>
|
1105
|
+
<a id="link2" href="d.html" target=_top>D</a>
|
1106
|
+
<a id="link2" href="e.html" target=_top>E</a>
|
1107
|
+
<a id="link2" href="f.html" target=_top>F</a>
|
1108
|
+
<a id="link2" href="g.html" target=_top>G</a>
|
1109
|
+
<a id="link2" href="h.html" target=_top>H</a>
|
1110
|
+
<a id="link2" href="i.html" target=_top>I</a>
|
1111
|
+
<a id="link2" href="j.html" target=_top>J</a>
|
1112
|
+
<a id="link2" href="k.html" target=_top>K</a>
|
1113
|
+
<a id="link2" href="l.html" target=_top>L</a>
|
1114
|
+
<a id="link2" href="m.html" target=_top>M</a>
|
1115
|
+
<a id="link2" href="n.html" target=_top>N</a>
|
1116
|
+
<a id="link2" href="o.html" target=_top>O</a>
|
1117
|
+
<a id="link2" href="p.html" target=_top>P</a>
|
1118
|
+
<a id="link2" href="q.html" target=_top>Q</a>
|
1119
|
+
<a id="link2" href="r.html" target=_top>R</a>
|
1120
|
+
<a id="link2" href="s.html" target=_top>S</a>
|
1121
|
+
<a id="link2" href="t.html" target=_top>T</a>
|
1122
|
+
<a id="link2" href="u.html" target=_top>U</a>
|
1123
|
+
<a id="link2" href="v.html" target=_top>V</a>
|
1124
|
+
<a id="link2" href="w.html" target=_top>W</a>
|
1125
|
+
<a id="link2" href="x.html" target=_top>X</a>
|
1126
|
+
<a id="link2" href="y.html" target=_top>Y</a>
|
1127
|
+
<a id="link2" href="z.html" target=_top>Z</a>
|
1128
|
+
</td></tr>
|
1129
|
+
<tr>
|
1130
|
+
<td align="center" valign="top">
|
1131
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-2.html" target=_top>A</a>
|
1132
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-3.html" target=_top>B</a>
|
1133
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-4.html" target=_top>C</a>
|
1134
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-5.html" target=_top>D</a>
|
1135
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-6.html" target=_top>E</a>
|
1136
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-7.html" target=_top>F</a>
|
1137
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-8.html" target=_top>G</a>
|
1138
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-9.html" target=_top>H</a>
|
1139
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-10.html" target=_top>I</a>
|
1140
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-11.html" target=_top>J</a>
|
1141
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-12.html" target=_top>K</a>
|
1142
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-13.html" target=_top>L</a>
|
1143
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-14.html" target=_top>M</a>
|
1144
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-15.html" target=_top>N</a>
|
1145
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-16.html" target=_top>O</a>
|
1146
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-17.html" target=_top>P</a>
|
1147
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-18.html" target=_top>Q</a>
|
1148
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-19.html" target=_top>R</a>
|
1149
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-20.html" target=_top>S</a>
|
1150
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-21.html" target=_top>T</a>
|
1151
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-22.html" target=_top>U</a>
|
1152
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-23.html" target=_top>V</a>
|
1153
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-24.html" target=_top>W</a>
|
1154
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-25.html" target=_top>X</a>
|
1155
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-26.html" target=_top>Y</a>
|
1156
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-27.html" target=_top>Z</a>
|
1157
|
+
<a id="link2" href="http://www.apotheke-online-internet.de/artikel/medi-c-28.html" target=_top>0-9</a>
|
1158
|
+
</td></tr></table></td></tr></table></td></tr></table>
|
1159
|
+
<table style="border-top: 1px solid; border-color: #3e7d52;" width="520" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="white"><br>
|
1160
|
+
<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>
|
1161
|
+
</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>
|
1162
|
+
</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>
|
1163
|
+
</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>
|
1164
|
+
</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>
|