function showcomment(q)
{
	$.ajax({   
    type: "GET",  
    url: "getcomments.php",  
	data: "q=" + q, 
    cache: false,   
    success: function(html){   
    $("#fullComments"+q).html(html);   
    } 
    });

}

