
function pag_callDwr(sortBy, sortOrder, page, callBackFunction) {
	DwrSupportListService.getSearchTableContent($("#oldSearch").val(), sortBy, sortOrder, page, $("#numberOfResultsPerPage").val(), $("#locale").val(), $("#idClient").val(), $("#idProduct").val(), callBackFunction );
}

function pag_getLineHtml(model,index) {
	var line = "<tr>";
	line += "<td class=\"imageTd image\"><img src=\""+ model.lines[index].imageUrl + "\"></td>";
	line += "<td class=\"userNameTd textColumn\"><a href=\""+ model.lines[index].fullUrl + "\">"+ model.lines[index].owner + "</a></td>";
	line += "<td class=\"titleTd textColumn\"><a href=\""+ model.lines[index].fullUrl + "\">"+ model.lines[index].title + "</a></td>";
	if($("#teamListingUrl").val()!="") {
		if(model.lines[index].teamName) {
			line += "<td class=\"teamTd textColumn\"><a href=\""+ model.lines[index].teamUrl + "\">"+ model.lines[index].teamName + "</a></td>";
		} else {
			line += "<td class=\"teamTd textColumn\"></td>";
		}
	}
	line += "</tr>";
	return line;
}
