﻿
function GlueText() {
    var owner = this;
    this.Div = "";
    this.Country = 0;
    this.Site = 0;
    this.Language = 0;
    this.DeployPath = "";
    this.Item = "";
    this.Show= function() {
        $.getJSON("http://www.creative.com/ad/creativead.asp?callback=?", { c: this.Country, s: this.Site, l: this.Language, op: "getgluetext", dp: this.DeployPath, i: this.Item }, function(data) {
            $("#" + owner.Div).html(data.data);
        });
    }
}

function SpotLight() {
    var owner = this;
    this.Div = "";
    this.Country = 0;
    this.Site = 0;
    this.Language = 0;
    this.DeployPath = "";
    this.Item = "";
    this.Count = 1;
    this.Index = 0;
    this.Show = function() {
    $("#" + owner.Div).html("<img src='http://www.creative.com/images/loading.gif'/>");
        $.getJSON("http://www.creative.com/ad/creativead.asp?callback=?", { c: this.Country, s: this.Site, l: this.Language, op: "getspotlight", dp: this.DeployPath, i: this.Item,count:this.Count,index:this.Index }, function(data) {
            $("#" + owner.Div).html(data.data);
        });
    }
}
