var main = {

    init : function (winWr)
    {
        this.winWr = winWr ? winWr : _wrapper;
        this.current = null;
        this.winWr.setOnloadListener(this);
    },

    onload : function(evtWr)
    {
        var i;
        for (var i=1; i<5;  i++) {
            if (!this.winWr.checkElement("manids"+i)) {
                break;
            }
            this.winWr.getElement("manids"+i).addListener(this, "onclick").id = i;
        }

        this.winWr.getElement("clikids").addListener(this, "onclick", "onclickClose");
    },

    onclick : function(evtWr, data)
    {
        evtWr.eventDrop();
        this.winWr.getElement("pupUpids").show();

        var img = this.winWr.getElement("image");
//dozvil.jpg
        img.elm.setAttribute("src", "/alptechprom/images/big_img_"+data['id']+".jpg");

    },

    onclickClose : function(evtWr, data)
    {
        evtWr.eventDrop();
        this.winWr.getElement("pupUpids").hide();

    }

}
