function showPaging(page_indexadd, page_indexsub, page_total, page_indexadd, page_last){
// Show the correct paging for the current results
if(page_indexadd != 1){document.write('<a href="?pageindex=0"><img src="/siteImages/first.gif" alt="First" style="vertical-align:text-top;"/></a><a href="?pageindex='+page_indexsub+'"><img src="/siteImages/previous.gif" alt="Previous" style="vertical-align:text-top;"/></a>')}
	if(page_total != 1)
	{document.write('Page '+ page_indexadd +' of ' + page_total);}
	if(page_total != page_indexadd){
	document.write('<a href="?pageindex=' + page_indexadd + '"><img src="/siteImages/next.gif" alt="Next" style="vertical-align:text-top;"/></a>');
	document.write('<a href="?pageindex=' + page_last + '"><img src="/siteImages/last.gif" alt="Last" style="vertical-align:text-top;"/></a>');
	}
}
