<!--
var total = (end - start + 1)
var count = 0 //the number of images
var track = -1 //track when to do a new row
list();
function list(){
if(count < total){
count ++
track ++
if(track == 10){
document.write("</tr><tr><td bgcolor='#ADAB95' align='center'><a href='javascript:jumpto("+count+");' class='link'>"+count+"</a></td>");
track = 0
list();
}
else{
document.write("<td bgcolor='#ADAB95' align='center'><a href='javascript:jumpto("+count+");' class='link'>"+count+"</a></td>");
list();
}
}
else{
fillin();
function fillin(){
if(track < 9){
document.write("<td bgcolor='#ADAB95' align='center'>&nbsp;</td>");
track++
fillin();}
}
}
}
-->