var art_salon = {


    init : function(winWr) {
        this.winWr = winWr != undefined ? winWr : _wrapper;
        this.winWr.createStyle(".jsHide", "display:none;");
    	this.winWr.setOnloadListener(this);
    },

	onload : function ()
	{
	    var IdEml = 'photoButton';
	    if (this.winWr.checkElement(IdEml)) {
	       var photoButton = this.winWr.getElement(IdEml);
	       photoButton.addListener(this, "onclick");
	    }
	},

	onclick : function (evtWr)
	{
	    evtWr.eventDrop();
        var photoButton = this.winWr.getElement('photo').invDisplay();
	}
}