﻿// JScript File
// Script file for photo gallery

function ProtectedImage()
{
    window.alert("These images are the property of Emerald Sea Dive Club and can not be copied or saved!");
    return;
}

function PreviewSelectedThumbnailPhoto(imgPath, altText) {
    var obj;
    var curImage;
    var previewImage;

    // Validate input argument
    if ((imgPath == null) || (imgPath.length == 0))
        return;

    //DisplayMessage("PreviewSelectedPhoto: Image Argument = " + imgPath);

    // Find the preview panel image and set the source image
    obj = MM_findObj("GalleryPreviewImage");
    if (null != obj) {
        // Set the image source value
        obj.src = imgPath;
        obj.alt = altText;
    }
}

