function go_URL(vaction,vNo,xTarget){
	document.goURL.action=vaction;
	document.goURL.sid.value=vNo;
	document.goURL.Item.value=vNo;	
	document.goURL.Target=xTarget;
	document.goURL.submit();
}
function go_search(){
	tmp = document.search1.key_word3.value;
	 if (tmp.length==1){
	 	num=tmp.charCodeAt(0);
	 	if (num<=127){
	 		alert('不可空白或不可為單一符號、數字、英文！');
 	 		return false;
 	 	}else{
 			 search1.submit();   
 	 	}
	 }
	 if(tmp.length==0 || tmp==' '){
	 	alert('不可空白！');
	  	return false;
	  }else{
	  	search1.submit(); 
	 }
	return false;
}
function test()
{
	alert("JS Test");
}