//去掉链接虚线框
window.onload=function(){
 for(var ii=0; ii<document.links.length; ii++)
 document.links[ii].onfocus=function(){this.blur()}
}
//======================
//选择标签页
function Show_Div(obj,id){
	//显示标签
	var tag = document.getElementById("tMenu").getElementsByTagName("div");
	var taglength = tag.length;
	for(i=0; i<taglength; i++){
		tag[i].className = "bMenu";
	}
	obj.parentNode.className = "MenuOn";
	// 显示内容
	for(i=1;j=document.getElementById("subMenu_"+i); i++){
		j.style.display = "none";
	}
	document.getElementById("subMenu_"+id).style.display = "block";	
}

//搜索关键词检验
function checkform(aForm){
	var str, con;
	str = /\S/;
	con = aForm.strKey.value.match(str);
	if ((!con)||(aForm.strKey.value=="keyword...")) {
		alert("Please enter keyword!");
		aForm.strKey.focus();
		return false;
	}
}