/* 
 *this file containsn javascript functions used in itineries operations
 */


//this function helps to show the form for editing companyinfo includes
  function config_showEditCompanyWebsitePrivacyPolicyForm
  (div_edit_company_website_privacy_policy)
 {
           var action_file_path = "config/index.php";
           var actioncmd = "?edit_company_website_privacy_policy_request=1";
           
           var url = action_file_path+actioncmd;
           url=url+"&sid="+Math.random();

        $.ajax({
            method: "get",url:url,
            beforeSend: function()
            {
             showSpinner(div_edit_company_website_privacy_policy);
            },
            complete: function()
            {},
            success: function(html)
            {
              $("#"+div_edit_company_website_privacy_policy).html(html);
            }
     });
 }//companyinfo_showEditFAQsForm()
