 
 // 鼠标移动时页面切换
 function secBoard(divName, chirldDiv)
{ 
    var _divName = document.getElementById(divName);
    var _ChirlddivName = document.getElementById(chirldDiv);
    
     for(i=0;i<_divName.childNodes.length;i++) {
   
        if (document.all) // IE
        {
            _divName.childNodes[i].style.display="none";
        } else {
            // 非IE                                                        
            var _chirldType = _divName.childNodes[i];
            if(_chirldType.nodeName == 'DIV')
               _chirldType.setAttribute("style", "display:none");
            
        }
        
        
     }
     
     
     if (document.all) // IE
      {                       
        _ChirlddivName.style.display="block";
      } else {                         
        _ChirlddivName.setAttribute("style", "display:block");
      }
      
}	   


function setImgSize(img,width,height){
     
     var MaxWidth=width;//设置图片宽度界限
     var MaxHeight=height;//设置图片高度界限
     var HeightWidth=img.offsetHeight/img.offsetWidth;//设置高宽比
     var WidthHeight=img.offsetWidth/img.offsetHeight;//设置宽高比
     
     if(img.offsetWidth>MaxWidth){
         img.width=MaxWidth;
         img.height=MaxWidth*HeightWidth;
      }
      if(img.offsetHeight>MaxHeight){
         img.height=MaxHeight;
         img.width=MaxHeight*WidthHeight;
      }
}  