function feedbackService( transferRowFn, videoLinkLabel, detailLabel, serviceLabel, serviceShortDescription, serviceFullDescription, videoHref, leftRecCount ) {
	
	var tdStyle ;
	if( leftRecCount == 0 ) {
		tdStyle = ' style="border-bottom: solid 1px #1962a7"' ;
	} else {
		tdStyle = '' ;
	}

	return transferRowFn( '<td' + tdStyle + '><span> <b>' + serviceLabel + '</b> - ' + serviceShortDescription + '<u class="serviceDescr" title="' + serviceFullDescription + 
	'">' + detailLabel + 
	'</u> </span></td><td' + tdStyle + ' class="videolink"><span><a href="javascript:playVideo(\'' + videoHref + '\');">' + videoLinkLabel + '</a></span></td>' ) ;
	
}

var firstServicesRow ;

function transferRow( toTransfer ) {
	var retVal ;
	retVal = '<tr>' + firstServicesRow + toTransfer + '</tr>' ;
	firstServicesRow = '' ;
	return retVal ;
}

function feedingbackServices( tableId, videoLinkLabel, detailLabel ) {

	firstServicesRow = '<td rowspan="8" align="center" style="width: 156px; border-bottom: solid 1px #1962a7"><img src="images/mobigator.jpg"></td>' ;
	
	var allHtml ;
	allHtml = '' ;
	
	readServicesInfo( function( serviceLabel, serviceShortDescription, serviceFullDescription, videoHref, leftRecCount ) {
		allHtml += feedbackService( transferRow, videoLinkLabel, detailLabel, serviceLabel, serviceShortDescription, serviceFullDescription, videoHref, leftRecCount ) ;
	},
	function() {
		$( '#' + tableId ).html( '<tbody>' + allHtml + '</tbody>' ) ;
		$( ".serviceDescr" ).tooltip() ;
	} ) ;
	
}

