<!-- ;

function loop(first, last, exit) {
Name = new String(document.title);
Length = Name.length;
Root = Name.substring(0, Length-3);
Num = Name.substring(Length-3);
Num = parseInt(Num);
//if (last - Num) Next = Num + 1; else Next = first
if (Num < last) Next = Num + 1; else Next = first
if (Num > first) var Back = Num - 1; else Back = last
if (Num <= last) {
document.write( '<p align=center>' );
document.write( '<a href='+Root+Back+'.htm onFocus=blur();><img src=../images/back.gif border=0></a>' );
document.write( '<a href='+exit+' onFocus=blur();><img src=../images/exit.gif border=0></a>' ); 
document.write( '<a href='+Root+Next+'.htm onFocus=blur();><img src=../images/next.gif border=0></a>' );
document.write( '</p>' );
}
table()	// main table
}	// end of function loop

function table() {
		document.write('<table width=100% height=100%>');
			document.write('<tr>');
				document.write('<td align=center>');
					document.write('<table border=5 bordercolor=white>');
						document.write('<tr>');
							document.write('<td>');
								document.write('<img src='+Name+'.jpg alt='+Name+'>');
							document.write('</td>');
						document.write('</tr>');
					document.write('</table>');
				document.write('</td>');
			document.write('</tr>');
		document.write('</table>');
}	// end of function table
// end hide -->

