var iScheme = new Scheme(); function Scheme () { this.FRESCO = "fresco"; var iLocalSchemeName = this.FRESCO; this.RIGHT = "right"; this.LEFT = "left"; this.TOP = "top"; this.BOTTOM = "bottom"; this.MIDDLE = "middle"; this.RIGHT_0 = "right_0"; this.LEFT_0 = "left_0"; this.TOP_0 = "top_0"; this.BOTTOM_0 = "bottom_0"; //---main menu----------- this.iMenuWndX = this.RIGHT; this.iMenuWndY = this.TOP; //---------------------------- //---zoom menu---------- this.iZoomWndX = this.RIGHT; this.iZoomWndY = this.BOTTOM; this.iZoomVertical = true; this.iZoomInWnd = true; this.iZoomLength = 0; //--------------------------- //--overview------ this.iOverWndX = this.LEFT; this.iOverWndY = this.BOTTOM; this.iOverWndRectColor = "#BE000D"; this.iSmallKoef = 0.23; //this.iOverBorder = 4; //if (iBrowser == 0) this.iOverBorder = this.iOverBorder - 2; this.iOverWndBgColor = "#DCF0FA"; this.iMinBtnColor = "#BE000D"; //this.iMinBtnLines = "white"; //------------------ this.iWndHeader = true; iFirstTimeLoadListener.addListener(this); this.onFirstTimeLoad = function () { /*try { iLocalSchemeName = iSchemeName; } catch (e) { iLocalSchemeName = this.STANDART; } */ this.setParamValues(); } this.setParamValues = function () { if (iLocalSchemeName == this.FRESCO) { this.iZoomInWnd = false; this.iZoomLength = 170; this.iOverWndRectColor = "#BE000D"; this.iWndHeader = false; this.iTabWndX = this.LEFT; this.iTabWndY = this.TOP; this.iTabWndW = 200; this.iTabWndH = 200; } } this.getScheme = function () { return iLocalSchemeName; } }