This is the Javascript code of a webpage I am trying to edit, can anyone tell me how to display all images on the single page and save them all at once?\[code\]<script type="text/javascript" charset="utf-8">function galleryslides( position ){ var urlstring = '/2/3/0/2303857.jpg,/3/9/5/3955717.jpg,/3/9/5/3955715.jpg,/3/9/1/3915649.jpg,/3/0/0/3005443.jpg,/3/0/0/3005441.jpg,/2/3/0/2303865.jpg,/2/6/5/2652731.jpg,/3/0/0/3005438.jpg,/1/6/5/1652787.jpg,/1/6/5/1652773.jpg,/1/6/5/1654636.jpg,/1/9/8/1983769.jpg,/2/6/5/2652730.jpg,/1/6/5/1654667.jpg,/2/6/5/2652747.jpg,/2/3/9/2391492.jpg,/4/2/6/4265140.jpg'; var urls = urlstring.split(','); var medialink = 'http://m1.nsimg.net'; document.getElementById('image').src = http://stackoverflow.com/questions/14469803/medialink+'/media'+urls[position]; var previous = position-1; var next = position+1; var prevElementI = document.getElementById('previousimg'); var prevElementT = document.getElementById('previoustxt'); var nextElementI = document.getElementById('nextimg') var nextElementT = document.getElementById('nexttxt') if (previous >= 0) { prevElementI.hrefhttp://stackoverflow.com/questions/14469803/= "javascript:galleryslides("+previous+")"; prevElementT.hrefhttp://stackoverflow.com/questions/14469803/= "javascript:galleryslides("+previous+")"; prevElementI.innerHTML = "<img src='" + medialink + "/thumb" + urls[previous] + "' width=40 height=30 border=0>"; prevElementT.innerHTML = "<span><span>«</span></span>"; } else { prevElementI.hrefhttp://stackoverflow.com/questions/14469803/= ""; prevElementT.hrefhttp://stackoverflow.com/questions/14469803/= ""; prevElementI.innerHTML = ""; prevElementT.innerHTML = ""; } if (next < urls.length) { nextElementI.hrefhttp://stackoverflow.com/questions/14469803/= "javascript:galleryslides("+next+")"; nextElementT.hrefhttp://stackoverflow.com/questions/14469803/= "javascript:galleryslides("+next+")"; nextElementI.innerHTML = "<img src='" + medialink + "/thumb" + urls[next] + "' width=40 height=30 border=0>"; nextElementT.innerHTML = "<span><span>»</span></span>"; } else { nextElementI.hrefhttp://stackoverflow.com/questions/14469803/= ""; nextElementT.hrefhttp://stackoverflow.com/questions/14469803/= ""; nextElementI.innerHTML = ""; nextElementT.innerHTML = ""; } }\[/code\]HTML\[code\]<div id="gallery"> <div class="clearfix"><a title="HollyMolly's Streamate Bio Page" href="http://www.streamate.com/cam/HollyMolly/?AFNO=1-0-629788-349648&UHNSMTY=221" onclick="return doclick()"><img id='image' src="http://m2.nsimg.net/media/2/3/0/2303857.jpg" width="320" height="240" border="0"></a></div> <div id="gallery-nav"> <a href='' class="btn" id='previoustxt'></a> <p id="imglinks"><a href='' id='previousimg'></a><a href='javascript:galleryslides( 1 )' id='nextimg'><img src='http://m2.nsimg.net/thumb/3/9/5/3955717.jpg' width=40 height=30 border=0></a></p> <a href='javascript:galleryslides( 1 )' class="btn" id='nexttxt'><span><span>»</span></span></a></div>\[/code\]