12

<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){
  alert(document.body);
  if(!document.getElementById(“maxiw”))document.body.insertAdjacentHTML(“BeforeEnd”,str);
  maxiw.Click();
 }
}
// 系统退出确认
function closewin()
{
 if(confirm(“警告:你确定要退出该系统吗?”)) {
  window.close();
 }
}
</script>

<html>  
<body>  
<object id=hh1 classid=”clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11″>          
<param name=”Command” value=”Minimize”></object>      
<object id=hh2 classid=”clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11″>          
<param name=”Command” value=”Maximize”></object>      
<OBJECT id=hh3 classid=”clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11″>      
<PARAM NAME=”Command” VALUE=”Close”></OBJECT>      
<input type=button value=最小化 onclick=hh1.Click()>      
<input type=button value=最大化 onclick=hh2.Click()>      
<input type=button value=关闭 onclick=hh3.Click()>      
</body>  
</html>

<!-- JiaThis Button BEGIN --> <style type="text/css"> #ckepop a:hover { color:red; background-color:#0063DC; } </style> <div id="ckepop"> <a href="http://www.jiathis.com/share/" class="jiathis_txt" target="_blank">分享到:</a> <a class="jiathis_button_tqq">腾讯微博</a> <a class="jiathis_button_tsina">新浪微博</a> <a class="jiathis_button_qzone">QQ空间</a> <a class="jiathis_button_hi">百度空间</a> <a class="jiathis_button_kaixin001">开心网</a> <a class="jiathis_button_renren">人人网</a> <a class="jiathis_button_xiaoyou">QQ校友</a> <a href="http://www.jiathis.com/share/?uid=89488" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank">更多...</a> </div> <script type="text/javascript" src="http://v2.jiathis.com/code/jia.js?uid=89488" charset="utf-8"></script> <!-- JiaThis Button END -->

Leave a Reply