function acceptIVrequest()
{
 $(document).ready(function(){
//  $("#acceptIVbtn").click(function() {
   $(this).attr("disabled", true);
   $.ajax({
     type: 'post',
     dataType: 'json',
     cache: false,
     url: <?php echo '"' . site_url(ajax_post/post_action') . '"'; ?>,
     data: 'interview_id=' + $(this).attr("name"),
     success: function(data) {
      alert(data.message);
        if (data.message == 'ok')
        {
//         window.location.href = '<?php echo site_url('product/index'); ?>';
        }
        else
        {
         $("#hidden").css({"background-color": data.bg_color}).fadeIn('slow');
        }
       },
     error: function(data) {
        $("#hidden").html("An error occurred!").fadeIn("slow");
        }
     });
   $(this).attr("disabled", false);
   return false;
 //}); 
 }); 
}