﻿// JScript 文件
//月排行和总排行
function change(id1,id2,div1,div2)
{
      document.getElementById(id1).className='tab1';
      document.getElementById(id2).className='tab2';
      document.getElementById(div1).style.display='block';
      document.getElementById(div2).style.display='none';
}
//加入收藏夹
function bookmarkSite(url,title) {
if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}
//禁止回车
 function jumpToNext()
 { 
   //回车键
      if (event.keyCode==13){ 
        return false;   
      }
  } 
          




