//--------------------------------------------------------------------------------------
// Copyright (C) 2007 Shanda Networking Corporation All rights reserved.	
// Created Date:	2007-12-11  
// Modified Date	2007-12-11 
// File: 	        MSNGlobal.cs
// Author:	        dingboyang
// Version:         1.0
// Description:     MSN图书站点页面公用母版页面涉及的脚本函数
// This source code can only be used in Shanda Networking project	
//--------------------------------------------------------------------------------------

// 读书频道菜单鼠标落上的变化
function MenuOver(id){
    var obj = document.getElementById(id);
    obj.background="Images/bg_nav_on.gif"
}  
// 读书频道菜单鼠标离开的变化        
function MenuOut(id){
    var obj = document.getElementById(id); 
    obj.background="Images/bg_nav_off.gif"
}
function openSearchPage(keywords,type)
{ 
    window.open("Search.aspx?k="+keywords+"&t="+type); 
}

function goSearch()
{
    var key =  document.getElementById("txtSearchKey").value;
    if(key == null || key.length==0){
        //alert("请输入搜索关键字"); 
        return false;
    }
    var index = document.getElementById("txtSearchType").selectedIndex;
    var type  = document.getElementById("txtSearchType").options[index].value;
    openSearchPage(key,type);
}
 
function keyBoardSearch()
{
   if(event.keyCode == 13)
   { 
       return false;
   } 
}