// JavaScript Document
function input_chk(){
	//alert();
  if(document.form1.choice.selectedIndex==0){
			document.form1.choice.focus();
            alert("選各專區吧!!!");
		     return false;
         } 	
 
  if(document.form1.title.value==""){
  alert("請輸入主題!!!");
  document.form1.title.focus();
  return false;
  }
  
  if(document.form1.name.value==""){
  alert("怎麼稱呼您呢!!!");
  document.form1.name.focus();
  return false;
  }
  
  
  if(!document.form1.mail.value==''){
		if(document.form1.mail.value.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) == -1)
		{
		alert("電子信箱有誤!!");
		document.form1.mail.focus();
		return false;
		}
 	}else{
	alert("電子信箱沒填!!");
	document.form1.mail.focus();
	return false;	
	}
	
  
  if(document.form1.content.value==""){
  alert("您還沒寫資料呢!!!");
  document.form1.content.focus();
  return false;
  }
  
  
  if(document.form1.recode.value==""){
  alert("請輸入驗證碼!!!");
  document.form1.recode.focus();
  return false;
     }
	  
}
