window.onload = function(){
    document.getElementById("keyword").focus();
}
function addFavorite(){
    var aUrls=document.URL.split("/");
    var vDomainName="http://www.soiseek.cn";
    var description=document.title;
    try{
        window.external.AddFavorite(vDomainName,description);
    }catch(e){
        window.sidebar.addPanel(description,vDomainName,"");
    }
}
function addBookmark()   
{
    var title = 'Soiseek - ËÑIC';
    var url = 'http://www.soiseek.cn';
    var desc = '';
    if (window.sidebar) {  
        window.sidebar.addPanel(title, url,desc); 
    } else if( document.all ) { //IE browser  
        window.external.AddFavorite(url,title);   
    } else if( window.opera && window.print ) { 
        return true;  
    }  
} 

function toshow1(obj){
	var n=document.getElementById(obj);
	n.style.display = "block";
	document.getElementById("ys1").style.color = "#06F";
}
function tohide1(obj){
	var m=document.getElementById(obj);
	m.style.display = "none";
	document.getElementById("ys1").style.color = "#333";
}
function toshow2(obj){
	var n=document.getElementById(obj);
	n.style.display = "block";
	document.getElementById("ys2").style.color = "#06F";
}
function tohide2(obj){
	var m=document.getElementById(obj);
	m.style.display = "none";
	document.getElementById("ys2").style.color = "#333";
}
