	CreateXmlHttpObj( );
	var http = XmlHttpObj;  
	
	function showComments(id){
		http.open( 'get', '../ajax/php_showComments.php?id=' + encodeURIComponent( id ),true );
		
		http.onreadystatechange = handle_showComments;
		http.send( null );
	} 

    function handle_showComments(){
		
		if( http.readyState == 4 && http.status == 200 ){
		var response = http.responseText;
			if( response ){
				document.getElementById('commentsArea').innerHTML = response;
			}
		}
    }
	