//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

//Begins display of screenshots
	for (inpg; inpg<total && inpg<(per_page*i); inpg++) {
		if (inpg%3==0) {
			window.document.writeln('<tr>');
		}
		var bnum=(total-1-inpg);
		window.document.writeln('<td bgcolor="'+full+'" class="tabletrans"><center>');
		window.document.writeln('<a href="#" onclick="winImage(\''+bname[bnum]+'\', \''+bimg[bnum]+'\'); return false;"><img src="'+simg[bnum]+'" alt="Zoom In" border="0"></a><br />');
		window.document.writeln('</center></td>');
		if (inpg%3==2) {
			window.document.writeln('</tr>');
		}
	}
	if (inpg%3!=0) {
		for (var g=0; g<(3-total%3); g++) {
			window.document.writeln('<td bgcolor="'+empt+'" width="160px" class="tabletrans3"></td>');
			if (g%3==0 && g!=0) {
				window.document.writeln('</tr>');
			}
		}
	}
	inpg=inpg-1;
