$(document).ready(function(){    
    
    $('div#comment_view').dialog({
		autoOpen: false,
		width: 900,
		height: window.screen.availHeight-200,
		modal: true,
        title: "Отзывы о товаре",
	});
    
    //открытие
	$('.go_comment_view').live("click",function(){
	    var id=$(this).attr("id");  
		$.ajax({
			 url: $("div#site_name").html()+"include/ajax/comment.php",
			 data: "view="+id,
			 type: "GET",
			 success: function(answ) {
				  $('div#comment_view').empty().html(answ);
			 }
        });
		$('div#comment_view').dialog('open');
        return false;
	});

});
