function answer(idmsg) {
     $("#formaotvet"+idmsg).toggle('blind');
     
}

function send(idmsg) {
     var otvet=$("textarea[name=data"+idmsg+"]").val(); 

     $.ajax({
          type: "POST",
          url: "http://www.chelnyclub.ru/block/company/otziv/sendmsg.php",
          data: "idmsg="+idmsg+"&otvet="+otvet,
          success:function(html) {
               $("#otvet"+idmsg).hide();
               $("textarea[name=data"+idmsg+"]").val('');
               $("#formaotvet"+idmsg).hide();
               $("#answer"+idmsg).html(html);
               $("#answer"+idmsg).show();
          }
     });
}


function del(idmsg) {
     $.ajax({
          type: "POST",
          url: "http://www.chelnyclub.ru/block/company/otziv/delmsg.php",
          data: "idmsg="+idmsg+"&type=0",
          success:function(html) {
		
               $("#blockmsg"+idmsg).hide('blind');
		$("#allotziv").html('');
		$("#allotziv").html(html);
		$("#allotziv").show();
		
          }
     });
     $.ajax({
          type: "POST",
          url: "http://www.chelnyclub.ru/block/company/otziv/delmsg.php",
          data: "idmsg="+idmsg+"&type=1",
          success:function(html) {
		$(html).show();		
          }
     });

}

function showdel(idmsg) {
     $("#delok"+idmsg).toggle();
}
