<script language=javascript>
function MiniWindow(){ //窗口最小化
?var str='<object id=miniw type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"><param name="Command" value="MINIMIZE"></object>';
?if(document.body){
??if(!document.getElementById("miniw"))document.body.insertAdjacentHTML("BeforeEnd",str);
??miniw.Click();
?}
}
function MaxiWindow(){ //窗口最大化
?var str='<object id=maxiw type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"><param name="Command" value="MAXIMIZE"></object>';
?if(document.body){
??if(!document.getElementById("maxiw"))document.body.insertAdjacentHTML("BeforeEnd",str);
??maxiw.Click();
?}
}
function closewin(){ //系統(tǒng)退出確認
?if(confirm("警告:你確定要退出該系統(tǒng)嗎?"))
??window.close();
}
</script>