/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */



// dialog box function


function goNepPharmacie(){
    var lhtml = '<br />Partie du site en construction ';
    jQuery(document).ready(function() {
        var $dialog = jQuery("#mydlgbtn")
        .html('<br /><br /><br />'+lhtml)
        .dialog({
            autoOpen: false,
            modal:true,
            height:275,
            width:500,
            title: 'Reserv&eacute; aux pharmaciens',

            buttons : {
                "Fermer" : function() {
                    jQuery(this).dialog("close");
                }
            }
        });

        
        jQuery('#pharmaciBtnDiv').click(function() { /*dialog opener */
            $dialog.dialog('open');
        });
    });
}

function goNepPublicite(){
    var lhtml = "<img src='" + cntxPath+ "/images/GIF-CONGRES.gif" + "'/>";


    jQuery(document).ready(function() {
        var $dialog = jQuery("#mydlgbtn")
        .html('<br /><br /><br />'+lhtml)
        .dialog({
            autoOpen: false,
            modal:true,
            height:350,
            width:550,
            title: 'Réservé aux professionnels de santé',

            buttons : {
                "Infos" : function() {
                    gotoPublications();
                    
                },
                "Fermer" : function() {
                    jQuery(this).dialog("close");
                }
            }
        });


        jQuery('#pharmaciBtnDiv').click(function() { /*dialog opener */
            $dialog.dialog('open');
        });
    });

}

function gotoHomePage(srvscheme,srvname,srvport){
    document.location.href = srvscheme+'://'+srvname+':'+srvport+"/web/guest/portanep";
}

