// Get Image Size Dimensions


// Image number currently being displayed
var currImage = 1;
var titleLatest = title[currImage]; 




function displayLatestImage() {

document.write('<a href="latest_photos.htm">');
document.write('<img border="0" alt="'+titleLatest+'" src="'+tImage[currImage]+'"><br>');
document.write('</a>');

}



function displayLatestText() {

/* Added date */


document.write('<a href="latest_photos.htm">Latest Image</a><br>');
document.write('<span class="picturetitle"><small>');
document.write(added[currImage]);
document.write('</small></span>');

}