﻿var ProductListing = new oProductListing();

function oProductListing() { }
Object.extend(oProductListing.prototype,
{
    ClientID: "",

    LoadImage: function (productRef, imageID)
    {
        Freedom.Ajax.Get("Freedom.DisabledGear", "Freedom.DisabledGear.Controls.ProductListing", "LoadImage", [productRef, imageID]);
    },

    ZoomImage: function (productRef, imageID)
    {
        Freedom.Ajax.Get("Freedom.DisabledGear", "Freedom.DisabledGear.Controls.ProductListing", "ZoomImage", [productRef, imageID]);
    },

    LoadZoomImage: function (productRef, imageID)
    {
        Freedom.Ajax.Get("Freedom.DisabledGear", "Freedom.DisabledGear.Controls.ProductListing", "LoadZoomImage", [productRef, imageID]);
    }
})