<!--
/**
 * styleSet.js
 * @fileoverview 风格设置
 * @author Lynk Li
 * @deprecated
 */

/**
 * @class StyleSet
 * 风格设置
 * @deprecated
 * @constructor
 * @author Lynk Li
 */
function StyleSet() {
	this.gotoStyleSetInterface = StyleSet_gotoStyleSetInterface;
	this.resizeUI = StyleSet_resizeUI;
}

function StyleSet_gotoStyleSetInterface() {
	if (document.getElementById("styleSetMain")) {
		document.getElementById("styleSetMain").style.display = "";
	} else {
		var styleSetMain = document.createElement("div");
		styleSetMain.id = "styleSetMain";
		document.getElementById("contentRight").insertBefore(styleSetMain, null);
		styleSetMain.innerHTML = "风格设置，开发中...<br /><a href=\"#\" onclick=\"_monitor.gotoMonitorInterface();\">返回监控</a>";
	}
	
	if (_common.innerType != "" && _common.innerType != "styleSet") {
		document.getElementById(_common.innerType + "Main").style.display = "none";
	}
	
	_common.setInnerType("styleSet");
}

function StyleSet_resizeUI() {
}

var _styleSet = new StyleSet();
-->