
document.writeln("<LINK href=\"menu.css\" rel=stylesheet>");
document.writeln("");
document.writeln("");
document.writeln("<BODY  leftMargin=0 topMargin=0 onload=init();>");
document.writeln("  <SCRIPT language=javascript>");
document.writeln("");
document.writeln("mtDropDown.spacerGif = \"a\"; ");
document.writeln("mtDropDown.dingbatOn = \"\"; ");
document.writeln("mtDropDown.dingbatOff = \"\"; ");
document.writeln("mtDropDown.dingbatSize = 12; ");
document.writeln("mtDropDown.menuPadding = 1; ");
document.writeln("mtDropDown.itemPadding = 3; ");
document.writeln("mtDropDown.shadowSize = 2; ");
document.writeln("mtDropDown.shadowOffset = 3; ");
document.writeln("mtDropDown.shadowColor = \"#888\"; ");
document.writeln("mtDropDown.shadowPng = \"\"; ");
document.writeln("mtDropDown.backgroundColor = \"#E3E4E6\"; \/\/背景色");
document.writeln("mtDropDown.backgroundPng = \"\"; ");
document.writeln("mtDropDown.hideDelay = 200; ");
document.writeln("mtDropDown.slideTime = 200; ");
document.writeln("");
document.writeln("mtDropDown.reference = {topLeft:1,topRight:2,bottomLeft:3,bottomRight:4};");
document.writeln("mtDropDown.direction = {down:1,right:2};");
document.writeln("mtDropDown.registry = [];");
document.writeln("mtDropDown._maxZ = 100;");
document.writeln("");
document.writeln("mtDropDown.isSupported = function() {");
document.writeln("if (typeof mtDropDown.isSupported.r == \"boolean\") ");
document.writeln("return mtDropDown.isSupported.r;");
document.writeln("var ua = navigator.userAgent.toLowerCase();");
document.writeln("var an = navigator.appName;");
document.writeln("var r = false;");
document.writeln("if (ua.indexOf(\"gecko\") > -1) r = true; ");
document.writeln("else if (an == \"Microsoft Internet Explorer\") {");
document.writeln("if (document.getElementById) r = true; ");
document.writeln("}");
document.writeln("mtDropDown.isSupported.r = r;");
document.writeln("return r;");
document.writeln("}");
document.writeln("");
document.writeln("mtDropDown.initialize = function() {");
document.writeln("for (var i = 0, menu = null; menu = this.registry[i]; i++) {");
document.writeln("menu.initialize();");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("mtDropDown.renderAll = function() {");
document.writeln("var aMenuHtml = [];");
document.writeln("for (var i = 0, menu = null; menu = this.registry[i]; i++) {");
document.writeln("aMenuHtml[i] = menu.toString();");
document.writeln("}");
document.writeln("document.write(aMenuHtml.join(\"\"));");
document.writeln("}");
document.writeln("");
document.writeln("function mtDropDown(oActuator, iDirection, iLeft, iTop, iReferencePoint, parentMenuSet) {");
document.writeln("");
document.writeln("this.addItem = addItem;");
document.writeln("this.addMenu = addMenu;");
document.writeln("this.toString = toString;");
document.writeln("this.initialize = initialize;");
document.writeln("this.isOpen = false;");
document.writeln("this.show = show;");
document.writeln("this.hide = hide;");
document.writeln("this.items = [];");
document.writeln("");
document.writeln("this.onactivate = new Function(); ");
document.writeln("this.ondeactivate = new Function(); ");
document.writeln("this.onmouseover = new Function(); ");
document.writeln("this.onqueue = new Function(); ");
document.writeln("");
document.writeln("this.index = mtDropDown.registry.length;");
document.writeln("mtDropDown.registry[this.index] = this;");
document.writeln("var id = \"mtDropDown\" + this.index;");
document.writeln("var contentHeight = null;");
document.writeln("var contentWidth = null;");
document.writeln("var childMenuSet = null;");
document.writeln("var animating = false;");
document.writeln("var childMenus = [];");
document.writeln("var slideAccel = -1;");
document.writeln("var elmCache = null;");
document.writeln("var ready = false;");
document.writeln("var _this = this;");
document.writeln("var a = null;");
document.writeln("var pos = iDirection == mtDropDown.direction.down ? \"top\" : \"left\";");
document.writeln("var dim = null;");
document.writeln("");
document.writeln("function addItem(sText, sUrl) {");
document.writeln("var item = new mtDropDownItem(sText, sUrl, this);");
document.writeln("item._index = this.items.length;");
document.writeln("this.items[item._index] = item;");
document.writeln("}");
document.writeln("function addMenu(oMenuItem) {");
document.writeln("if (!oMenuItem.parentMenu == this) throw new Error(\"Cannot add a menu here\");");
document.writeln("if (childMenuSet == null) childMenuSet = new mtDropDownSet(mtDropDown.direction.right, -5, 2, mtDropDown.reference.topRight);");
document.writeln("var m = childMenuSet.addMenu(oMenuItem);");
document.writeln("childMenus[oMenuItem._index] = m;");
document.writeln("m.onmouseover = child_mouseover;");
document.writeln("m.ondeactivate = child_deactivate;");
document.writeln("m.onqueue = child_queue;");
document.writeln("return m;");
document.writeln("}");
document.writeln("function initialize() {");
document.writeln("initCache();");
document.writeln("initEvents();");
document.writeln("initSize();");
document.writeln("ready = true;");
document.writeln("}");
document.writeln("function show() {");
document.writeln("");
document.writeln("if (ready) {");
document.writeln("_this.isOpen = true;");
document.writeln("animating = true;");
document.writeln("setContainerPos();");
document.writeln("elmCache[\"clip\"].style.visibility = \"visible\";");
document.writeln("elmCache[\"clip\"].style.zIndex = mtDropDown._maxZ++;");
document.writeln("");
document.writeln("slideStart();");
document.writeln("_this.onactivate();");
document.writeln("}");
document.writeln("}");
document.writeln("function hide() {");
document.writeln("if (ready) {");
document.writeln("_this.isOpen = false;");
document.writeln("animating = true;");
document.writeln("for (var i = 0, item = null; item = elmCache.item[i]; i++) ");
document.writeln("dehighlight(item);");
document.writeln("if (childMenuSet) childMenuSet.hide();");
document.writeln("slideStart();");
document.writeln("_this.ondeactivate();");
document.writeln("}");
document.writeln("}");
document.writeln("function setContainerPos() {");
document.writeln("var sub = oActuator.constructor == mtDropDownItem; ");
document.writeln("var act = sub ? oActuator.parentMenu.elmCache[\"item\"][oActuator._index] : oActuator; ");
document.writeln("var el = act;");
document.writeln("var x = 0;");
document.writeln("var y = 0;");
document.writeln("var minX = 0;");
document.writeln("var maxX = (window.innerWidth ? window.innerWidth : document.body.clientWidth) - parseInt(elmCache[\"clip\"].style.width);");
document.writeln("var minY = 0;");
document.writeln("var maxY = (window.innerHeight ? window.innerHeight : document.body.clientHeight) - parseInt(elmCache[\"clip\"].style.height);");
document.writeln("");
document.writeln("while (sub ? el.parentNode.className.indexOf(\"mtDropdownMenu\") == -1 : el.offsetParent) {");
document.writeln("x += el.offsetLeft;");
document.writeln("y += el.offsetTop;");
document.writeln("if (el.scrollLeft) x -= el.scrollLeft;");
document.writeln("if (el.scrollTop) y -= el.scrollTop;");
document.writeln("el = el.offsetParent;");
document.writeln("}");
document.writeln("if (oActuator.constructor == mtDropDownItem) {");
document.writeln("x += parseInt(el.parentNode.style.left);");
document.writeln("y += parseInt(el.parentNode.style.top);");
document.writeln("}");
document.writeln("switch (iReferencePoint) {");
document.writeln("case mtDropDown.reference.topLeft:");
document.writeln("break;");
document.writeln("case mtDropDown.reference.topRight:");
document.writeln("x += act.offsetWidth;");
document.writeln("break;");
document.writeln("case mtDropDown.reference.bottomLeft:");
document.writeln("y += act.offsetHeight;");
document.writeln("break;");
document.writeln("case mtDropDown.reference.bottomRight:");
document.writeln("x += act.offsetWidth;");
document.writeln("y += act.offsetHeight;");
document.writeln("break;");
document.writeln("}");
document.writeln("x += iLeft;");
document.writeln("y += iTop;");
document.writeln("x = Math.max(Math.min(x, maxX), minX);");
document.writeln("y = Math.max(Math.min(y, maxY), minY);");
document.writeln("elmCache[\"clip\"].style.left = x + \"px\";");
document.writeln("elmCache[\"clip\"].style.top = y + \"px\";");
document.writeln("}");
document.writeln("function slideStart() {");
document.writeln("var x0 = parseInt(elmCache[\"content\"].style[pos]);");
document.writeln("var x1 = _this.isOpen ? 0 : -dim;");
document.writeln("if (a != null) a.stop();");
document.writeln("a = new Accelimation(x0, x1, mtDropDown.slideTime, slideAccel);");
document.writeln("a.onframe = slideFrame;");
document.writeln("a.onend = slideEnd;");
document.writeln("a.start();");
document.writeln("}");
document.writeln("function slideFrame(x) {");
document.writeln("elmCache[\"content\"].style[pos] = x + \"px\";");
document.writeln("}");
document.writeln("function slideEnd() {");
document.writeln("if (!_this.isOpen) elmCache[\"clip\"].style.visibility = \"hidden\";");
document.writeln("animating = false;");
document.writeln("}");
document.writeln("function initSize() {");
document.writeln("");
document.writeln("var ow = elmCache[\"items\"].offsetWidth;");
document.writeln("var oh = elmCache[\"items\"].offsetHeight;");
document.writeln("var ua = navigator.userAgent.toLowerCase();");
document.writeln("");
document.writeln("elmCache[\"clip\"].style.width = ow + mtDropDown.shadowSize + 2 + \"px\";");
document.writeln("elmCache[\"clip\"].style.height = oh + mtDropDown.shadowSize + 2 + \"px\";");
document.writeln("");
document.writeln("elmCache[\"content\"].style.width = ow + mtDropDown.shadowSize + \"px\";");
document.writeln("elmCache[\"content\"].style.height = oh + mtDropDown.shadowSize + \"px\";");
document.writeln("contentHeight = oh + mtDropDown.shadowSize;");
document.writeln("contentWidth = ow + mtDropDown.shadowSize;");
document.writeln("dim = iDirection == mtDropDown.direction.down ? contentHeight : contentWidth;");
document.writeln("");
document.writeln("elmCache[\"content\"].style[pos] = -dim - mtDropDown.shadowSize + \"px\";");
document.writeln("elmCache[\"clip\"].style.visibility = \"hidden\";");
document.writeln("");
document.writeln("if (ua.indexOf(\"mac\") == -1 || ua.indexOf(\"gecko\") > -1) {");
document.writeln("");
document.writeln("elmCache[\"background\"].style.width = ow + \"px\";");
document.writeln("elmCache[\"background\"].style.height = oh + \"px\";");
document.writeln("elmCache[\"background\"].style.backgroundColor = mtDropDown.backgroundColor;");
document.writeln("");
document.writeln("elmCache[\"shadowRight\"].style.left = ow + \"px\";");
document.writeln("elmCache[\"shadowRight\"].style.height = oh - (mtDropDown.shadowOffset - mtDropDown.shadowSize) + \"px\";");
document.writeln("elmCache[\"shadowRight\"].style.backgroundColor = mtDropDown.shadowColor;");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("elmCache[\"shadowBottom\"].style.top = oh + \"px\";");
document.writeln("elmCache[\"shadowBottom\"].style.width = ow - mtDropDown.shadowOffset + \"px\";");
document.writeln("elmCache[\"shadowBottom\"].style.backgroundColor = mtDropDown.shadowColor;");
document.writeln("}");
document.writeln("");
document.writeln("}");
document.writeln("function initCache() {");
document.writeln("var menu = document.getElementById(id);");
document.writeln("var all = menu.all ? menu.all : menu.getElementsByTagName(\"*\"); ");
document.writeln("elmCache = {};");
document.writeln("elmCache[\"clip\"] = menu;");
document.writeln("elmCache[\"item\"] = [];");
document.writeln("for (var i = 0, elm = null; elm = all[i]; i++) {");
document.writeln("switch (elm.className) {");
document.writeln("case \"items\":");
document.writeln("case \"content\":");
document.writeln("case \"background\":");
document.writeln("case \"shadowRight\":");
document.writeln("case \"shadowBottom\":");
document.writeln("elmCache[elm.className] = elm;");
document.writeln("break;");
document.writeln("case \"item\":");
document.writeln("elm._index = elmCache[\"item\"].length;");
document.writeln("elmCache[\"item\"][elm._index] = elm;");
document.writeln("break;");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("_this.elmCache = elmCache;");
document.writeln("}");
document.writeln("function initEvents() {");
document.writeln("");
document.writeln("for (var i = 0, item = null; item = elmCache.item[i]; i++) {");
document.writeln("item.onmouseover = item_mouseover;");
document.writeln("item.onmouseout = item_mouseout;");
document.writeln("item.onclick = item_click;");
document.writeln("}");
document.writeln("");
document.writeln("if (typeof oActuator.tagName != \"undefined\") {");
document.writeln("oActuator.onmouseover = actuator_mouseover;");
document.writeln("oActuator.onmouseout = actuator_mouseout;");
document.writeln("}");
document.writeln("");
document.writeln("elmCache[\"content\"].onmouseover = content_mouseover;");
document.writeln("elmCache[\"content\"].onmouseout = content_mouseout;");
document.writeln("}");
document.writeln("function highlight(oRow) {");
document.writeln("oRow.className = \"item hover\";");
document.writeln("if (childMenus[oRow._index]) ");
document.writeln("oRow.lastChild.firstChild.src = mtDropDown.dingbatOn;");
document.writeln("}");
document.writeln("function dehighlight(oRow) {");
document.writeln("oRow.className = \"item\";");
document.writeln("if (childMenus[oRow._index]) ");
document.writeln("oRow.lastChild.firstChild.src = mtDropDown.dingbatOff;");
document.writeln("}");
document.writeln("function item_mouseover() {");
document.writeln("if (!animating) {");
document.writeln("highlight(this);");
document.writeln("if (childMenus[this._index]) ");
document.writeln("childMenuSet.showMenu(childMenus[this._index]);");
document.writeln("else if (childMenuSet) childMenuSet.hide();");
document.writeln("}");
document.writeln("}");
document.writeln("function item_mouseout() {");
document.writeln("if (!animating) {");
document.writeln("if (childMenus[this._index])");
document.writeln("childMenuSet.hideMenu(childMenus[this._index]);");
document.writeln("else ");
document.writeln("dehighlight(this);");
document.writeln("}");
document.writeln("}");
document.writeln("function item_click() {");
document.writeln("if (!animating) {");
document.writeln("if (_this.items[this._index].url) ");
document.writeln("location.href = _this.items[this._index].url;");
document.writeln("}");
document.writeln("}");
document.writeln("function actuator_mouseover() {");
document.writeln("parentMenuSet.showMenu(_this);");
document.writeln("}");
document.writeln("function actuator_mouseout() {");
document.writeln("parentMenuSet.hideMenu(_this);");
document.writeln("}");
document.writeln("function content_mouseover() {");
document.writeln("if (!animating) {");
document.writeln("parentMenuSet.showMenu(_this);");
document.writeln("_this.onmouseover();");
document.writeln("}");
document.writeln("}");
document.writeln("function content_mouseout() {");
document.writeln("if (!animating) {");
document.writeln("parentMenuSet.hideMenu(_this);");
document.writeln("}");
document.writeln("}");
document.writeln("function child_mouseover() {");
document.writeln("if (!animating) {");
document.writeln("parentMenuSet.showMenu(_this);");
document.writeln("}");
document.writeln("}");
document.writeln("function child_deactivate() {");
document.writeln("for (var i = 0; i < childMenus.length; i++) {");
document.writeln("if (childMenus[i] == this) {");
document.writeln("dehighlight(elmCache[\"item\"][i]);");
document.writeln("break;");
document.writeln("}");
document.writeln("}");
document.writeln("}");
document.writeln("function child_queue() {");
document.writeln("parentMenuSet.hideMenu(_this);");
document.writeln("}");
document.writeln("function toString() {");
document.writeln("var aHtml = [];");
document.writeln("var sClassName = \"mtDropdownMenu\" + (oActuator.constructor != mtDropDownItem ? \" top\" : \"\");");
document.writeln("for (var i = 0, item = null; item = this.items[i]; i++) {");
document.writeln("aHtml[i] = item.toString(childMenus[i]);");
document.writeln("}");
document.writeln("return \'<div id=\"\' + id + \'\" class=\"\' + sClassName + \'\">\' + ");
document.writeln("\'<div class=\"content\"><table class=\"items\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\' + ");
document.writeln("\'<tr><td colspan=\"2\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"\' + mtDropDown.menuPadding + \'\"><\/td><\/tr>\' + ");
document.writeln("aHtml.join(\'\') + ");
document.writeln("\'<tr><td colspan=\"2\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"\' + mtDropDown.menuPadding + \'\"><\/td><\/tr><\/table>\' + ");
document.writeln("\'<div class=\"shadowBottom\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"1\"><\/div>\' + ");
document.writeln("\'<div class=\"shadowRight\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"1\"><\/div>\' + ");
document.writeln("\'<div class=\"background\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"1\"><\/div>\' + ");
document.writeln("\'<\/div><\/div>\';");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("mtDropDownSet.registry = [];");
document.writeln("function mtDropDownSet(iDirection, iLeft, iTop, iReferencePoint) {");
document.writeln("");
document.writeln("this.addMenu = addMenu;");
document.writeln("this.showMenu = showMenu;");
document.writeln("this.hideMenu = hideMenu;");
document.writeln("this.hide = hide;");
document.writeln("");
document.writeln("var menus = [];");
document.writeln("var _this = this;");
document.writeln("var current = null;");
document.writeln("this.index = mtDropDownSet.registry.length;");
document.writeln("mtDropDownSet.registry[this.index] = this;");
document.writeln("");
document.writeln("function addMenu(oActuator) {");
document.writeln("var m = new mtDropDown(oActuator, iDirection, iLeft, iTop, iReferencePoint, this);");
document.writeln("menus[menus.length] = m;");
document.writeln("return m;");
document.writeln("}");
document.writeln("function showMenu(oMenu) {");
document.writeln("if (oMenu != current) {");
document.writeln("");
document.writeln("if (current != null) hide(current); ");
document.writeln("");
document.writeln("current = oMenu;");
document.writeln("");
document.writeln("oMenu.show();");
document.writeln("}");
document.writeln("else {");
document.writeln("");
document.writeln("cancelHide(oMenu);");
document.writeln("}");
document.writeln("}");
document.writeln("function hideMenu(oMenu) {");
document.writeln("");
document.writeln("if (current == oMenu && oMenu.isOpen) {");
document.writeln("");
document.writeln("if (!oMenu.hideTimer) scheduleHide(oMenu);");
document.writeln("}");
document.writeln("}");
document.writeln("function scheduleHide(oMenu) {");
document.writeln("");
document.writeln("oMenu.onqueue();");
document.writeln("oMenu.hideTimer = window.setTimeout(\"mtDropDownSet.registry[\" + _this.index + \"].hide(mtDropDown.registry[\" + oMenu.index + \"])\", mtDropDown.hideDelay);");
document.writeln("}");
document.writeln("function cancelHide(oMenu) {");
document.writeln("");
document.writeln("if (oMenu.hideTimer) {");
document.writeln("window.clearTimeout(oMenu.hideTimer);");
document.writeln("oMenu.hideTimer = null;");
document.writeln("}");
document.writeln("}");
document.writeln("function hide(oMenu) { ");
document.writeln("if (!oMenu && current) oMenu = current;");
document.writeln("if (oMenu && current == oMenu && oMenu.isOpen) {");
document.writeln("");
document.writeln("cancelHide(oMenu);");
document.writeln("current = null;");
document.writeln("oMenu.hideTimer = null;");
document.writeln("");
document.writeln("");
document.writeln("oMenu.hide();");
document.writeln("}");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("function mtDropDownItem(sText, sUrl, oParent) {");
document.writeln("this.toString = toString;");
document.writeln("this.text = sText;");
document.writeln("this.url = sUrl;");
document.writeln("this.parentMenu = oParent;");
document.writeln("function toString(bDingbat) {");
document.writeln("var sDingbat = bDingbat ? mtDropDown.dingbatOff : mtDropDown.spacerGif;");
document.writeln("var iEdgePadding = mtDropDown.itemPadding + mtDropDown.menuPadding;");
document.writeln("var sPaddingLeft = \"padding:\" + mtDropDown.itemPadding + \"px; padding-left:\" + iEdgePadding + \"px;\"");
document.writeln("var sPaddingRight = \"padding:\" + mtDropDown.itemPadding + \"px; padding-right:\" + iEdgePadding + \"px;\"");
document.writeln("return \'<tr class=item><td  style=\"\' + sPaddingLeft + \'\" ><img src=2052\/Images\/OutIcons\/a.gif>\' + ");
document.writeln("sText + \'<\/td><td width=\"10\" style=\"\' + sPaddingRight + \'\"><\/td><\/tr>\';");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("function Accelimation(from, to, time, zip) {");
document.writeln("if (typeof zip == \"undefined\") zip = 0;");
document.writeln("if (typeof unit == \"undefined\") unit = \"px\";");
document.writeln("this.x0 = from;");
document.writeln("this.x1 = to;");
document.writeln("this.dt = time;");
document.writeln("this.zip = -zip;");
document.writeln("this.unit = unit;");
document.writeln("this.timer = null;");
document.writeln("this.onend = new Function();");
document.writeln("this.onframe = new Function();");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.prototype.start = function() {");
document.writeln("this.t0 = new Date().getTime();");
document.writeln("this.t1 = this.t0 + this.dt;");
document.writeln("var dx = this.x1 - this.x0;");
document.writeln("this.c1 = this.x0 + ((1 + this.zip) * dx \/ 3);");
document.writeln("this.c2 = this.x0 + ((2 + this.zip) * dx \/ 3);");
document.writeln("Accelimation._add(this);");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.prototype.stop = function() {");
document.writeln("Accelimation._remove(this);");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.prototype._paint = function(time) {");
document.writeln("if (time < this.t1) {");
document.writeln("var elapsed = time - this.t0;");
document.writeln("this.onframe(Accelimation._getBezier(elapsed\/this.dt,this.x0,this.x1,this.c1,this.c2));");
document.writeln("}");
document.writeln("else this._end();");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.prototype._end = function() {");
document.writeln("Accelimation._remove(this);");
document.writeln("this.onframe(this.x1);");
document.writeln("this.onend();");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation._add = function(o) {");
document.writeln("var index = this.instances.length;");
document.writeln("this.instances[index] = o;");
document.writeln("");
document.writeln("if (this.instances.length == 1) {");
document.writeln("this.timerID = window.setInterval(\"Accelimation._paintAll()\", this.targetRes);");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation._remove = function(o) {");
document.writeln("for (var i = 0; i < this.instances.length; i++) {");
document.writeln("if (o == this.instances[i]) {");
document.writeln("this.instances = this.instances.slice(0,i).concat( this.instances.slice(i+1) );");
document.writeln("break;");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("if (this.instances.length == 0) {");
document.writeln("window.clearInterval(this.timerID);");
document.writeln("this.timerID = null;");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation._paintAll = function() {");
document.writeln("var now = new Date().getTime();");
document.writeln("for (var i = 0; i < this.instances.length; i++) {");
document.writeln("this.instances[i]._paint(now);");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation._B1 = function(t) { return t*t*t }");
document.writeln("Accelimation._B2 = function(t) { return 3*t*t*(1-t) }");
document.writeln("Accelimation._B3 = function(t) { return 3*t*(1-t)*(1-t) }");
document.writeln("Accelimation._B4 = function(t) { return (1-t)*(1-t)*(1-t) }");
document.writeln("");
document.writeln("Accelimation._getBezier = function(percent,startPos,endPos,control1,control2) {");
document.writeln("return endPos * this._B1(percent) + control2 * this._B2(percent) + control1 * this._B3(percent) + startPos * this._B4(percent);");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.instances = [];");
document.writeln("Accelimation.targetRes = 10;");
document.writeln("Accelimation.timerID = null;");
document.writeln("		function init() {");
document.writeln("			if (mtDropDown.isSupported()) {");
document.writeln("				mtDropDown.initialize();");
document.writeln("			}");
document.writeln("		}");
document.writeln("");
document.writeln("		");
document.writeln("<\/SCRIPT>");
document.writeln("<TABLE cellSpacing=0 cellPadding=0 width=\"1000\" border=0 background=\"2052\/Images\/OutIcons\/wt_02.gif\"  align=\"center\">");
document.writeln("              <TBODY>");
document.writeln("                <TR>");
document.writeln("                  <TD class=nav1 align=middle height=\"37\" valign=\"middle\"><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu1 ");
document.writeln("                  href=\"default.aspx\">首 页<\/A> <IMG ");
document.writeln("            src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu2 ");
document.writeln("                  href=\"2052\/ASPX\/PriceDept\/index3-1.html\">机构简介<\/A><IMG ");
document.writeln("            src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/span><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu3 ");
document.writeln("                  href=\"2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=001001\">法律法规<\/A> <IMG src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu4 ");
document.writeln("                 href=\"2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=002\">工作动态<\/A> <IMG ");
document.writeln("            src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu5 ");
document.writeln("                   href=\"2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=005\">价格快讯<\/A> <IMG src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu6 ");
document.writeln("                  href=\"2052\/ASPX\/PublicService\/index.html\">缴费指南<\/A> <IMG ");
document.writeln("            src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu7 ");
document.writeln("                  href=\"2052\/ASPX\/PolicyPublicity\/Out_PolicyPubList.aspx\">政策公示<\/A> <IMG ");
document.writeln("            src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu8 ");
document.writeln("                  href=\"2052\/ASPX\/PriceMonitor\/Out_PriceList.aspx?sort=001\">价格监测<\/A> <IMG ");
document.writeln("            src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu9 ");
document.writeln("                  href=\"2052\/ASPX\/PriceReport/Out_PriceReport.aspx\">价格投诉<\/A> <IMG src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu10 ");
document.writeln("                  href=\"2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=006001\">国际行情<\/A> <IMG src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu11 ");
document.writeln("                  href=\"2052\/ASPX\/Letters\/OutLetterList.aspx\">局长信箱<\/A> <IMG ");
document.writeln("            src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu12 ");
document.writeln("                  href=\"2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=008001\">专题专栏<\/A> <IMG src=\"2052\/Images\/OutIcons\/wt_49.gif\" align=absMiddle border=0><\/SPAN><\/td><td> <SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu13 ");
document.writeln("                  href=\"mailto:tzwjj@163.com\">在线咨询<\/A><\/SPAN><\/TD>");
document.writeln("                <\/TR>");
document.writeln("              <\/TBODY>");
document.writeln("            <\/TABLE>");
document.writeln("			<SCRIPT language=javascript>");
document.writeln("if (mtDropDown.isSupported()) {");
document.writeln("	var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);");
document.writeln("	var menu2 = ms.addMenu(document.getElementById(\'menu2\'));");
document.writeln("	menu2.addItem(\' 机构设置\',\'2052\/ASPX\/PriceDept\/index3-1.html\'); ");
document.writeln("	menu2.addItem(\' 领导分工\',\'2052\/ASPX\/PriceDept\/index3.html\'); ");

document.writeln("	menu2.addItem(\' 机构职能\',\'2052\/ASPX\/PriceDept\/index4.html\'); ");
document.writeln("	");
document.writeln("	var menu3 = ms.addMenu(document.getElementById(\'menu3\'));");
document.writeln("	menu3.addItem(\' 价格法律\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=001001\'); ");
document.writeln("	menu3.addItem(\' 行政法规\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=001002\'); ");
document.writeln("	menu3.addItem(\' 部委规章\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=001003\'); ");
document.writeln("	menu3.addItem(\' 地方法规\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=001004\'); ");
document.writeln("	menu3.addItem(\' 行业规定\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=001005\'); ");
document.writeln("	");
document.writeln("	var menu6 = ms.addMenu(document.getElementById(\'menu6\'));");
document.writeln("	menu6.addItem(\' 城市居民\',\'2052\/ASPX\/PublicService\/index.html\'); ");
document.writeln("	menu6.addItem(\' 涉农收费\',\'2052\/ASPX\/ChargeOpen\/index3-1.html\'); ");
document.writeln("	menu6.addItem(\' 涉企收费\',\'2052\/ASPX\/Charge\/Company_List.aspx\');	");
document.writeln("	menu6.addItem(\' 教育收费\',\'2052\/ASPX\/PublicService\/jysf.htm\'); ");
document.writeln("	menu6.addItem(\' 行政性收费\',\'2052\/ASPX\/Charge\/Chieflist_before.aspx\');");
document.writeln("	");
document.writeln("	var menu8 = ms.addMenu(document.getElementById(\'menu8\'));");
document.writeln("	menu8.addItem(\' 价格指数\',\'2052\/ASPX\/PriceMonitor\/Out_PriceExponent.aspx\'); ");
document.writeln("	menu8.addItem(\' 监测行情\',\'2052\/ASPX\/PriceMonitor\/Out_PriceList.aspx?sort=001\'); ");
document.writeln("	menu8.addItem(\' 监测分析\',\'2052\/ASPX\/PriceMonitor\/Out_PriceList.aspx?sort=002\'); ");
document.writeln("	menu8.addItem(\' 专项监测\',\'2052\/ASPX\/PriceMonitor\/Out_PriceList.aspx?sort=003\'); ");
document.writeln("	");
document.writeln("	var menu9 = ms.addMenu(document.getElementById(\'menu9\'));");
document.writeln("	menu9.addItem(\' 价格投诉\',\'2052\/ASPX\/PriceReport\/Out_PriceReport.aspx\'); ");
document.writeln("	menu9.addItem(\' 网上答复\',\'2052\/ASPX\/PriceReport\/Out_PriceReportReply.aspx\'); ");

document.writeln("	");
document.writeln("	var menu10 = ms.addMenu(document.getElementById(\'menu10\'));");
document.writeln("	menu10.addItem(\' 人民币外汇牌价\',\'http:\/\/www.boc.cn\/cn\/common\/whpj.html\'); ");
document.writeln("	menu10.addItem(\' 国际商品行情\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=006001\'); ");
document.writeln("	menu10.addItem(\' 国际商品价格预测\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=006002\'); ");
document.writeln("	");
document.writeln("	var menu11 = ms.addMenu(document.getElementById(\'menu11\'));");
document.writeln("	menu11.addItem(\' 局长信箱\',\'2052\/ASPX\/Letters\/OutLetterList.aspx\'); ");
document.writeln("	menu11.addItem(\' 信件查询\',\'2052\/ASPX\/Letters\/OutLetterSearch.aspx\'); ");
document.writeln("	menu11.addItem(\' 公开答复\',\'2052\/ASPX\/Letters\/OutLetterReply.aspx\'); ");
document.writeln("	");
document.writeln("	var menu12 = ms.addMenu(document.getElementById(\'menu12\'));");
document.writeln("	menu12.addItem(\' 行政许可\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=008001\'); ");
document.writeln("	menu12.addItem(\' 文明创建\',\''); ");
document.writeln("	menu12.addItem(\' 廉政专栏\',\''); 	");
//document.writeln("	menu12.addItem(\' 文明创建\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=008002\'); ");
//document.writeln("	menu12.addItem(\' 廉政专栏\',\'2052\/ASPX\/CommentNews\/OutInfo_List.aspx?sort=008003\'); 	");
document.writeln("	menu12.addItem(\' 科学发展观\',\'2052\/ASPX\/development\/index.aspx'); 	");
document.writeln("	");
document.writeln("	mtDropDown.renderAll();");
document.writeln("	}");
document.writeln("");
document.writeln("<\/SCRIPT>");
document.writeln("<\/body>");
document.writeln("");
document.writeln("");
document.writeln("");