//All scripts Copyright 2005 The Digital Practice. All Rights Reserved. Use without written consent
//prohibited. Limited license to use script granted to SimGlobal.
//For more information contact matej@thedigitalpractice.com

//Script for writing Page numbers and page navigation
	if (i>1) {
		i_p=i-1;
		window.document.writeln('<a href="'+file+'?ppage='+per_page+'&'+i_p+'">&lt;Previous Page</a>');
		}
	var unrnd=total/per_page;
	var rnd=Math.round(total/per_page);
	if (unrnd>rnd) {
		rnd=rnd+1;
	}
	for (var pgs=1; pgs<=rnd; pgs++) {
		if (pgs==i) {
			window.document.writeln(i);
		}
		else {
			window.document.writeln('<a href="'+file+'?ppage='+per_page+'&'+pgs+'">'+pgs+'</a>');
		}
	}
	if ((inpg+1)==(per_page*i) && (inpg+1)<total) {
		i_n=i+1;
		window.document.writeln('<a href="'+file+'?ppage='+per_page+'&'+i_n+'">Next Page&gt;</a>');
	}
