document.observe("dom:loaded",function() {$('txtCommentText').observe("keyup",function() {if($('txtCommentText').value.length>160) $('txtCommentText').value=$('txtCommentText').value.substring(0,160) $('chars').update(160-$('txtCommentText').value.length);});});function ToggleComment(){Effect.toggle('divComment',"blind");} function ShowAllComments(){$('aShowAllComments').remove();Effect.toggle('divAllComments',"blind");} function Comment(id){new Ajax.Request('/service/productservice.aspx?action=2',{method:'post',parameters:{intId:id,strName:$('txtCommentName').value,strText:$('txtCommentText').value},onSuccess:function(transport){ToggleComment();alert('Tack för din kommentar!');},onFailure:function(transport){}});}