var isshow = false; function Margin() { var inner = document.getElementById("inner") var bar = document.getElementById("leftbar") var top = document.getElementById("top") if (document.documentElement.clientWidth > 1000) { inner.style.marginLeft = "0px"; bar.style.visibility = "visible"; top.style.paddingLeft = "60px"; } else if (isshow) { inner.style.marginLeft = "130px"; bar.style.visibility = "visible"; top.style.paddingLeft = "60px"; } else { inner.style.marginLeft = "10px"; bar.style.visibility = "hidden"; top.style.paddingLeft = "0px"; } } function SideButton() { if (document.documentElement.clientWidth <= 1000) { var bar = document.getElementById("leftbar") var inner = document.getElementById("inner") var top = document.getElementById("top") if (isshow == false) { bar.style.visibility = "visible"; inner.style.marginLeft = "130px"; top.style.paddingLeft = "60px" isshow = true; } else { bar.style.visibility = "hidden"; inner.style.marginLeft = "10px"; top.style.paddingLeft = "0px"; isshow = false; } } } function ClickOn(addr) { window.location = addr; } function Panel(PageName) { document.write('\
\

\ '+PageName+'\

\
\ \
\
\

\ \

\

\ \

\

\ \

\

\ \

\

\ \

\

\ \

\
\ \ '); } function Head(Title) { document.write('\ '+Title+'\ \ \ \ \ \ ') }