
next = function(t,collectionID,startrow,showItem,searchquery){
	var nL = document.getElementById('nextLink');
	if(nL.href != '#'){
		nL.href = '#';
	}
	ColdFusion.navigate('pagination.cfm?collectionID='+collectionID+'&StartRow='+startrow+'&showItem='+showItem+'&searchquery='+searchquery, 'pagination');
}
prev = function(t,collectionID,startrow,showItem,searchquery){
	var pL = document.getElementById('prevLink');
	if(pL.href != '#'){
		pL.href = '#';
	}
	ColdFusion.navigate('pagination.cfm?collectionID='+collectionID+'&StartRow='+startrow+'&showItem='+showItem+'&searchquery='+searchquery, 'pagination');
}