function getPagerTemplate()
{
	return "ITEMCOUNT matches | STARTRECORD - ENDRECORD displayed &nbsp; &nbsp; &nbsp; &nbsp; PAGENOOPTIONS "; // (PAGECOUNT pages) <a href=\"javascript:void(0);\" LEFTIMGONCLICK >Previous Page</a> Go To Page:&nbsp;" 
//       +" <select name=\"NewPageNumber\" onchange=\"lxFetch(MODULEID,this[this.selectedIndex].value,'');\">"
//       +"PAGEOPTIONS"
//       +" </select>"
//       +"<a href=\"javascript:void(0);\" RIGHTIMGONCLICK >Next Page</a>";
//       +"<div class=\"titleFilter\">Find a Title: TITLEFILTERLIST</div>";
}


function getSamplePager(moduleId, imagesPath, pagerCssClass)
{
	var myCustomPage = getBasicPager(moduleId, imagesPath, pagerCssClass);
	myCustomPage.htmltemplate = getPagerTemplate();
	return myCustomPage;
}

function getBasicPager(moduleId, imagesPath, pagerCssClass)
{
	var myCustomPage = new LxCustomPager(moduleId);
	myCustomPage.pagerCssClass = pagerCssClass;
	myCustomPage.leftImageOn = imagesPath+"buttons/left_green_arrow.gif";
	myCustomPage.rightImageOn = imagesPath+"buttons/right_green_arrow.gif";
	myCustomPage.leftImageOff = imagesPath+"buttons/left_green_arrow_inactive.gif";
	myCustomPage.rightImageOff = imagesPath+"buttons/right_green_arrow_inactive.gif";
	//myCustomPage.spacerImage = "[PORTALPATH,SYSTEM]spacer.gif"
	//myCustomPage.htmltemplate = getPagerTemplate();
	return myCustomPage;
}

