function GetComment($ID,$Page){
$.ajax({
url:"Comment.aspx?action=ajax_getcomment&id="+$ID+"&page="+$Page+"&time"+new Date().toString(),
type:'GET',
success:function(){
$('#comment').html(arguments[0]);
}
});
}