// JavaScript Document
function checkInput(obj,type){
	if(type=="click"){
		if(trim(obj.value)=="请输入关键词"){
			obj.value=""
		}
		obj.style.color="#333333"
	}
	if(type=="change"){
		obj.style.color="#333333"
	}
	if(type=="blur"){
		if(trim(obj.value)==""){
			obj.value="请输入关键词"
			obj.style.color="#cccccc"
		}
	}
}
function checkSearch(){
	var obj=document.Search.keyword
	if(trim(obj.value)=="" || trim(obj.value)=="请输入关键词" || trim(obj.value).length<2){
		obj.value="请输入关键词"
		obj.style.color="#cccccc"
		alert("请输入您要搜索的关键词!")
	}else{
		document.Search.submit()
	}
}
////////////////////////////////////////////////
function checkCookies(){
	
}
////////////////////////////////////////////////



////////////////////////////////////////////////
//函数工具///////////////////////////////////////
////////////////////////////////////////////////
function trim(str){  //删除左右两端的空格 
	return str.replace(/(^\s*)|(\s*$)/g, ""); 
} 


