
   var help_ricerca_popup_chi = null;
   var help_ricerca_popup_cosa = null;
   var help_prof_popup = null;
   var DIV_POPUP_HELP_CHI = "DIV_POPUP_HELP_CHI";
   var DIV_POPUP_HELP_COSA = "DIV_POPUP_HELP_COSA";
   var DIV_POPUP_HELP_PROF = "DIV_POPUP_HELP_PROF";

   $(document).ready(function(){

        help_ricerca_popup_chi = new JQueryPopup({
            id: DIV_POPUP_HELP_CHI,
            width: 550,
            height: 460,
            zIndex: 100002,
            headerVisible: true,
            overlayAlpha: 30,
            popupBackground: '#fff',
            imageCloseUrl: ABSOLUTE_URL + 'public/shared/images/delete_min.png',
            imageCloseAlt: 'Chiudi',
            clickOutToClose: true,
            draggable: false,
            resizable: false
        });

        help_ricerca_popup_cosa = new JQueryPopup({
            id: DIV_POPUP_HELP_COSA,
            width: 550,
            height: 460,
            zIndex: 100002,
            headerVisible: true,
            overlayAlpha: 30,
            popupBackground: '#fff',
            imageCloseUrl: ABSOLUTE_URL + 'public/shared/images/delete_min.png',
            imageCloseAlt: 'Chiudi',
            clickOutToClose: true,
            draggable: false,
            resizable: false
        });

        help_prof_popup = new JQueryPopup({
            id: DIV_POPUP_HELP_PROF,
            width: 550,
            height: 460,
            zIndex: 100002,
            headerVisible: true,
            overlayAlpha: 30,
            popupBackground: '#fff',
            imageCloseUrl: ABSOLUTE_URL + 'public/shared/images/delete_min.png',
            imageCloseAlt: 'Chiudi',
            clickOutToClose: true,
            draggable: false,
            resizable: false
        });


        popup_contatta_esperto = new JQueryPopup({
            id: 'contatta_esperto',
            width: 550,
            height: 260,
            zIndex: 100002,
            headerVisible: true,
            overlayAlpha: 30,
            popupBackground: '#fff',
            imageCloseUrl: ABSOLUTE_URL + 'public/shared/images/delete_min.png',
            imageCloseAlt: 'Chiudi',
            clickOutToClose: true,
            draggable: false,
            resizable: false
        });

   });

   function show_help_chi(){
       help_ricerca_popup_chi.show();
       help_ricerca_popup_chi.load(ABSOLUTE_SITE_URL + 'frontend/help_chi');
   }


   function show_help_cosa(){
        help_ricerca_popup_cosa.show();
        help_ricerca_popup_cosa.load(ABSOLUTE_SITE_URL + 'frontend/help_cosa');
   }

   function show_help_prof(){
        help_prof_popup.show();
        help_prof_popup.load(ABSOLUTE_SITE_URL + 'frontend/help_prof');
   }

   function show_contatta_esperto(){
        popup_contatta_esperto.show();
        popup_contatta_esperto.load(ABSOLUTE_SITE_URL + 'frontend/popup_contatta_esperto');
   }


   function goto_pgbody()
   {
        if (window.location.hash==''){
            $('html, body').animate({
                scrollTop: $("#tick-close").offset().top
            }, 400);
        }
   }
