// 关键字搜索
var keywords="请输入搜索关键字";
function showwords(thisobj,thistype){
	if(thistype){
		if(thisobj.value=="")
			{thisobj.value=keywords;
		    thisobj.style.color='#777777';}
	}else{
		if(thisobj.value==keywords)
			{thisobj.value="";
		    thisobj.style.color='#555555';}
	}
}

function AddBookmark(title,url)
{
	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;
}
