function ChangeSrc(img) { /* Gives the clicked image's filename */ var shortHand = img.src.slice(-6); /* The image information to be displayed */ var theName = img.name; /* Tells to load the clicked image into the "fullSize" img */ document.getElementById("fullImage").src = "images/works/" + shortHand; /* After the image is loaded, makes the whole full size image visible */ document.getElementById("fullSize").style.visibility = "visible"; /* Checks to see if the image is loaded, then goes to function checkBorder() */ document.images["#fullImage"].onload = makeBorder(); function makeBorder() { /* Sees how wide the border will be, based on image size */ var imgWidth = document.getElementById('fullImage').width; /* Actually sets the border */ document.getElementById('imageContain').style.width = imgWidth + 10 + 'px'; document.getElementById('imageContain').style.background = '#fff'; /* Brings up the image information, if any */ document.getElementById('infoBox').innerHTML = theName; return true; } } function closeDisplay() { document.getElementById("fullImage").src = ""; document.getElementById("fullSize").style.visibility = "hidden"; }



















