PANTOPRAZOLE ACTAVIS 40 mg, poudre pour solution injectable (IV)
Base de données publiquedes médicaments
Visiter [medicaments.gouv.fr]
Accueil |
Glossaire |
Aide
Dernière mise à jour le 29/11/2019
|
document.body.onload = function(){
var cacheMedic = {};
$('#txtCaracteres').autocomplete({
source:function( request, response ) {
var term = request.term;
if ( term in cacheMedic ) {
response( cacheMedic[ term ] );
return;
}
$.getJSON( "options_autocompletion.php", {debut:term}, function( data, status, xhr ) {
if(data.length > 0){
cacheMedic[ term ] = data;
response( data );
}
else{
$('#txtCaracteres').autocomplete('close');
}
});
},
classes:{
"ui-autocomplete":"completeDiv"
},
select: function( event, ui ) {
submitFormMedic();
}
});
var cachePatho = {};
$('#txtCaracteresPath').autocomplete({
source:function( request, response ) {
var term = request.term;
if ( term in cachePatho ) {
response( cachePatho[ term ] );
return;
}
$.getJSON( "options_autocompletionPath.php", {debut:term}, function( data, status, xhr ) {
console.log(data);
if(data.length > 0){
cachePatho[ term ] = data;
response( data );
}
else{
$('#txtCaracteresPath').autocomplete('close');
}
});
},
classes:{
"ui-autocomplete":"completeDiv"
},
select: function( event, ui ) {
submitFormPath(ui.item.id);
}
});
document.getElementById('formRecherche').txtCaracteres.focus();
$("#listePathologieDispo").on('click',function(e){
e.preventDefault();
var strWindowFeatures = "width=1000,height=400,scrolling=yes,scrollbars=yes";
window.open("pathologies.php","patho", strWindowFeatures);
}
);
}
var keyPressEnter = false;
$("#txtCaracteres, #txtCaracteresSub").keypress(function(event){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
submitFormRecherche();
keyPressEnter = true;
}
});
$("#txtCaracteresPath").keypress(function(event){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
submitFormPath(0);
keyPressEnter = true;
}
});
$("#btnMedic").on('click',function(e){
if(!keyPressEnter){
$("input[name='typeRecherche']").val(0);
submitFormRecherche();
}
});
$("#btnSubst").on('click',function(e){
if(!keyPressEnter){
$("input[name='typeRecherche']").val(1);
submitFormRecherche();
}
});
$("#btnPatho").on('click',function(e){
if(!keyPressEnter){
$("input[name='typeRecherche']").val(2);
submitFormPath(0);
}
});
|
Plan du site | Accessibilité | Contact | Téléchargement | Service-Public.fr | Legifrance | Gouvernement.fr |
//Customisation des fonctions xiti en fonction de la configuration
function cs_xt_click(object, arg, level2_id, click_label, click_type, url, open_blank){
var label = "" + click_label;
xt_click(object, arg, level2_id, label, click_type, url, open_blank);
}
function cs_xt_med(arg, level2_id, click_label, click_type){
var label = "" + click_label;
xt_med(arg, level2_id, label, click_type);
}
function cs_xt_form(form, arg, level2_id, click_label, typeClick, submit){
var label = "" + click_label;
xt_form(form, arg, level2_id, label, typeClick, submit);
}
//Initialisation variables pour les marqueurs de type clic
var liens = [];
var liensSpecifiques = [];
////#1673: Marquage Xiti/Clic
//Ajout des marqueurs sur au moins plus d'une page
var liensCommun = [
{id: 'lien_ministere', libelle: 'icone_ministere', open_blank: true, typeClick: 'S'},
{id: 'lien_medicament_gouv', libelle: 'medicament_gouv', open_blank: true, typeClick: 'S'},
{id: 'lien_accueil', libelle: 'lien_accueil'},
{id: 'lien_glossaire', libelle: 'lien_glossaire'},
{id: 'lien_aide', libelle: 'lien_aide'},
{id: 'lien_ansm', libelle: 'lien_ansm', open_blank: true, typeClick: 'S'},
{id: 'lien_has', libelle: 'lien_has', open_blank: true, typeClick: 'S'},
{id: 'lien_assurance_maladie', libelle: 'lien_assu-maladie', open_blank: true, typeClick: 'S'},
{id: 'lien_fiche_info', libelle: 'onglet_fiche-info'},
{id: 'lien_rcp', libelle: 'onglet_rcp'},
{id: 'lien_notice', libelle: 'onglet_notice'}
];
//Fusionner les liens spécifiques avec les commons
liens = liensSpecifiques.concat(liensCommun);
//Enregistrer les éléments qui doivent être audités
for (var index in liens){
var lien = liens[index];
(function (objet_lien){
var items = [];
//Récupérer les items en fonction de la stratégie
if (objet_lien.id){
var item = document.getElementById(objet_lien.id);
if (item){
items.push(document.getElementById(objet_lien.id));
}
}else if(objet_lien.class){
items = document.getElementsByClassName(objet_lien.class);
}
//Ajouter le marqueur sur l'evenement de l'item
for(var i=0; i < items.length; i++){
var item = items[i];
//Par défaut, on met le marqueur sur le click
objet_lien.click = objet_lien.click == undefined? true: objet_lien.click;
//Par défaut, on attribue un type de clic de navigation
var typeClick = objet_lien.typeClick == undefined? 'N': objet_lien.typeClick;
if (objet_lien.click){
item.addEventListener('click', function(){
//Utilisation de la fonction xt_med dans certains cas
if (objet_lien.use_partial_function){
cs_xt_med('C', '2', objet_lien.libelle, typeClick);
}else{
var open_blank = objet_lien.open_blank ? 1: null;
return cs_xt_click(this, 'C', '2', objet_lien.libelle, typeClick, null, open_blank);
}
});
}
//Gestion des marqueurs sur le mouseenter
if (objet_lien.mouseenter){
item.addEventListener('mouseenter', function(){
cs_xt_med('C', '2', objet_lien.libelle, typeClick);
});
}
}
})(lien);
}
////Fin #1673: Marquage Xiti/Clic
////#1673: Marquage Xiti/Page
xtnv = document;
xtsd = "http://logc407";
xtsite = "567041";
xtn2 = "2";
xtpage = "pg_App";
xtdi = "";
xt_multc = "";
xt_an = "";
xt_ac = "";
//do not modify below
if (window.xtparam!=null){window.xtparam+="&ac="+xt_ac+"&an="+xt_an+xt_multc;}
else{window.xtparam="&ac="+xt_ac+"&an="+xt_an+xt_multc;};
////Fin #1673: Marquage Xiti/Page
Base de données publiquedes médicaments
Visiter [medicaments.gouv.fr]
Accueil |
Glossaire |
Aide
Dernière mise à jour le 29/11/2019
|
document.body.onload = function(){
var cacheMedic = {};
$('#txtCaracteres').autocomplete({
source:function( request, response ) {
var term = request.term;
if ( term in cacheMedic ) {
response( cacheMedic[ term ] );
return;
}
$.getJSON( "options_autocompletion.php", {debut:term}, function( data, status, xhr ) {
if(data.length > 0){
cacheMedic[ term ] = data;
response( data );
}
else{
$('#txtCaracteres').autocomplete('close');
}
});
},
classes:{
"ui-autocomplete":"completeDiv"
},
select: function( event, ui ) {
submitFormMedic();
}
});
var cachePatho = {};
$('#txtCaracteresPath').autocomplete({
source:function( request, response ) {
var term = request.term;
if ( term in cachePatho ) {
response( cachePatho[ term ] );
return;
}
$.getJSON( "options_autocompletionPath.php", {debut:term}, function( data, status, xhr ) {
console.log(data);
if(data.length > 0){
cachePatho[ term ] = data;
response( data );
}
else{
$('#txtCaracteresPath').autocomplete('close');
}
});
},
classes:{
"ui-autocomplete":"completeDiv"
},
select: function( event, ui ) {
submitFormPath(ui.item.id);
}
});
document.getElementById('formRecherche').txtCaracteres.focus();
$("#listePathologieDispo").on('click',function(e){
e.preventDefault();
var strWindowFeatures = "width=1000,height=400,scrolling=yes,scrollbars=yes";
window.open("pathologies.php","patho", strWindowFeatures);
}
);
}
var keyPressEnter = false;
$("#txtCaracteres, #txtCaracteresSub").keypress(function(event){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
submitFormRecherche();
keyPressEnter = true;
}
});
$("#txtCaracteresPath").keypress(function(event){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
submitFormPath(0);
keyPressEnter = true;
}
});
$("#btnMedic").on('click',function(e){
if(!keyPressEnter){
$("input[name='typeRecherche']").val(0);
submitFormRecherche();
}
});
$("#btnSubst").on('click',function(e){
if(!keyPressEnter){
$("input[name='typeRecherche']").val(1);
submitFormRecherche();
}
});
$("#btnPatho").on('click',function(e){
if(!keyPressEnter){
$("input[name='typeRecherche']").val(2);
submitFormPath(0);
}
});
|
Plan du site | Accessibilité | Contact | Téléchargement | Service-Public.fr | Legifrance | Gouvernement.fr |
//Customisation des fonctions xiti en fonction de la configuration
function cs_xt_click(object, arg, level2_id, click_label, click_type, url, open_blank){
var label = "" + click_label;
xt_click(object, arg, level2_id, label, click_type, url, open_blank);
}
function cs_xt_med(arg, level2_id, click_label, click_type){
var label = "" + click_label;
xt_med(arg, level2_id, label, click_type);
}
function cs_xt_form(form, arg, level2_id, click_label, typeClick, submit){
var label = "" + click_label;
xt_form(form, arg, level2_id, label, typeClick, submit);
}
//Initialisation variables pour les marqueurs de type clic
var liens = [];
var liensSpecifiques = [];
////#1673: Marquage Xiti/Clic
//Ajout des marqueurs sur au moins plus d'une page
var liensCommun = [
{id: 'lien_ministere', libelle: 'icone_ministere', open_blank: true, typeClick: 'S'},
{id: 'lien_medicament_gouv', libelle: 'medicament_gouv', open_blank: true, typeClick: 'S'},
{id: 'lien_accueil', libelle: 'lien_accueil'},
{id: 'lien_glossaire', libelle: 'lien_glossaire'},
{id: 'lien_aide', libelle: 'lien_aide'},
{id: 'lien_ansm', libelle: 'lien_ansm', open_blank: true, typeClick: 'S'},
{id: 'lien_has', libelle: 'lien_has', open_blank: true, typeClick: 'S'},
{id: 'lien_assurance_maladie', libelle: 'lien_assu-maladie', open_blank: true, typeClick: 'S'},
{id: 'lien_fiche_info', libelle: 'onglet_fiche-info'},
{id: 'lien_rcp', libelle: 'onglet_rcp'},
{id: 'lien_notice', libelle: 'onglet_notice'}
];
//Fusionner les liens spécifiques avec les commons
liens = liensSpecifiques.concat(liensCommun);
//Enregistrer les éléments qui doivent être audités
for (var index in liens){
var lien = liens[index];
(function (objet_lien){
var items = [];
//Récupérer les items en fonction de la stratégie
if (objet_lien.id){
var item = document.getElementById(objet_lien.id);
if (item){
items.push(document.getElementById(objet_lien.id));
}
}else if(objet_lien.class){
items = document.getElementsByClassName(objet_lien.class);
}
//Ajouter le marqueur sur l'evenement de l'item
for(var i=0; i < items.length; i++){
var item = items[i];
//Par défaut, on met le marqueur sur le click
objet_lien.click = objet_lien.click == undefined? true: objet_lien.click;
//Par défaut, on attribue un type de clic de navigation
var typeClick = objet_lien.typeClick == undefined? 'N': objet_lien.typeClick;
if (objet_lien.click){
item.addEventListener('click', function(){
//Utilisation de la fonction xt_med dans certains cas
if (objet_lien.use_partial_function){
cs_xt_med('C', '2', objet_lien.libelle, typeClick);
}else{
var open_blank = objet_lien.open_blank ? 1: null;
return cs_xt_click(this, 'C', '2', objet_lien.libelle, typeClick, null, open_blank);
}
});
}
//Gestion des marqueurs sur le mouseenter
if (objet_lien.mouseenter){
item.addEventListener('mouseenter', function(){
cs_xt_med('C', '2', objet_lien.libelle, typeClick);
});
}
}
})(lien);
}
////Fin #1673: Marquage Xiti/Clic
////#1673: Marquage Xiti/Page
xtnv = document;
xtsd = "http://logc407";
xtsite = "567041";
xtn2 = "2";
xtpage = "pg_App";
xtdi = "";
xt_multc = "";
xt_an = "";
xt_ac = "";
//do not modify below
if (window.xtparam!=null){window.xtparam+="&ac="+xt_ac+"&an="+xt_an+xt_multc;}
else{window.xtparam="&ac="+xt_ac+"&an="+xt_an+xt_multc;};
////Fin #1673: Marquage Xiti/Page