function ajaxAddReviewHelpful(d,c,a,b){document.getElementById(d).innerHTML="<strong>Submitting...&nbsp;&nbsp;&nbsp;<strong>";$.ajax({type:"POST",url:"/Ajax/AddReviewHelpful.ashx",data:{Type:"helpful",productReviewId:c},dataType:"json",cache:false,timeout:15000,success:function(e){if(e[0].Result=="success"){$("#"+d).html("<strong>Thanks for your feedback.&nbsp;&nbsp;&nbsp;</strong>");$("#"+a).html(e[0].helpCount);$("#"+b).html(e[0].TotalHelpCount);$("#"+d).siblings(".reviewcolor3").hide()}else{$("#"+d).html("<strong>Was this review helpful to you?&nbsp;&nbsp;&nbsp;</strong>")}},error:function(){$("#"+d).html("<strong>Was this review helpful to you?&nbsp;&nbsp;&nbsp;</strong>")}})}function ajaxAddReviewUnHelpful(d,c,a,b){document.getElementById(d).innerHTML="<strong>Submitting...&nbsp;&nbsp;&nbsp;<strong>";$.ajax({type:"POST",url:"/Ajax/AddReviewHelpful.ashx",data:{Type:"Unhelpful",productReviewId:c},dataType:"json",cache:false,timeout:15000,success:function(e){if(e[0].Result=="success"){$("#"+d).html("<strong>Thanks for your feedback.&nbsp;&nbsp;&nbsp;</strong>");$("#"+a).html(e[0].helpCount);$("#"+b).html(e[0].TotalHelpCount);$("#"+d).siblings(".reviewcolor3").hide()}else{$("#"+d).html("<strong>Was this review helpful to you?&nbsp;&nbsp;&nbsp;</strong>")}},error:function(){$("#"+d).html("<strong>Was this review helpful to you?&nbsp;&nbsp;&nbsp;</strong>")}})};
