﻿// JScript File
function ChangePic(param)
{
        document.getElementById("divPicGallery").innerHTML ="<IMG SRC='../../WGSModules/Gallery/indicator.gif' />";
        var sentData;
        sentData = 1 + "#" + param;
        DoServerActionGallery(sentData,'');
}
function ReceiveDataFromServerGallery(strData)
{   
    document.getElementById("divPicGallery").innerHTML = strData;
}

