var Images = new Array(); var ImgStart = 1; var ImgAmount = 0; ImgAmount = 2;Images[0] = '81727_thumb.jpg'; Images[1] = 'b2_thumb.jpg'; function ImageName(file){ var name = file.substr(0,file.search("_thumb")) return name; } function ImageBrowse( type ){ if( type==0 ){ if( ImgStart > 0 ){ ImgStart--; ShowImages(); } } else { if( ImgStart+5 < ImgAmount ){ ImgStart++; ShowImages(); } } } function ShowImages( ){ var i=0; var content = ""; content += ""; for(j=ImgStart;j < ImgStart+5;j++){ content += ''; } content += ""; content += "
"; GetE('gallery').innerHTML = content; }