$(document).ready(function(){$('input[name="chkRating"]').click(function(){$("#rating").val($(this).val())});$("#faqcomment").focus(function(){$(this).text().indexOf("[Optional Comment]")==0&&$(this).text("")}).blur(function(){$(this).text().length==0&&$(this).text("[Optional Comment]")});$("#submitComments,#submitComments1,#submitComments2").click(function(){if($("#rating").val()=="0")$("#alertmsg").html("<b>Please rate this article before submitting.</b>");else{$.get("/handlers/FAQsSaveComments.ashx",
{faqid:$("input[title='faqid']").val(),comments:$("#faqcomment").val(),rating:$("#rating").val()});$("#commentstable").hide();$("#commentsmsg").fadeIn()}})});

