var imageList = new Array(); var cImageIdx = 0; var baseAlbumPath = "ndata/news/8907"; imageList[0] = "infographic-persain-gulf.jpg"; //alert(cImageIdx); function forwardImage() { if (cImageIdx == imageList.length - 1) { alert("به انتهای مجموعه رسيده ايد"); return; } cImageIdx++; document.getElementById("imgLargePhoto").src = baseAlbumPath + "/C/" + imageList[cImageIdx]; document.getElementById("aLargePhoto").href = baseAlbumPath + "/B/" + imageList[cImageIdx]; } function backwardImage() { if (cImageIdx == 0) { alert("به ابتدای مجموعه رسيده ايد"); return; } cImageIdx--; document.getElementById("imgLargePhoto").src = baseAlbumPath + "/C/" + imageList[cImageIdx]; document.getElementById("aLargePhoto").href = baseAlbumPath + "/B/" + imageList[cImageIdx]; } function goPhoto(index) { document.getElementById("divLoading_imgLargePhoto").style.display = 'inline'; document.getElementById("imgLargePhoto").src = baseAlbumPath + "/C/" + imageList[index]; document.getElementById("aLargePhoto").href = baseAlbumPath + "/B/" + imageList[index]; document.getElementById("divLoading_imgLargePhoto").style.display = 'none'; } درحال دریافت عکس ...