function checklogin(){
	if(document.login.Account.value.replace(/\ /g,'').replace('/\　/g','')==""){
		alert("請輸入帳號");
		document.login.Account.focus();
		return false;
	}
	if(document.login.Passwd.value.replace(/\ /g,'').replace('/\　/g','')==""){
		alert("請輸入密碼");
		document.login.Passwd.focus();
		return false;
	}
	
	return true;
}
function checksearch(){
	if(document.search.Keyword.value.replace(/\ /g,'').replace('/\　/g','').replace('/\%/g','')==""){
		alert("請輸入關鍵字");	
		document.search.Keyword.focus();
		return false;
	}	
	if(document.search.Keyword.value.replace(/\ /g,'').replace('/\　/g','').length < 2){
		alert("關鍵字至少要2個字");	
		document.search.Keyword.focus();
		return false;
	}
		return true;
}
function searchform1(page){
	
	document.searchform.Page.value=page;
	document.searchform.submit();	
}
