function comm_paging ( start , vId){
	ajaxCall('ajax/comm_page.php?',fill_event ,'post','&video_id='+vId+'&start='+start,gogo);
	return true;
}

function fill_event(txt){
	var oEm = document.getElementById('commentPaging') ; 
	
	oEm.innerHTML = txt ;
	document.getElementById('moveDown').focus; 
}

function gogo(){
	
	//alert('in gogo');
}