function checkdata(){
	var testmail;
	var str="";
	with(document.form1){
		testmail=/\w+@\w+.\w+/g;	
		if(email.value==""){
				str+="◎ 電子郵件信箱未填\n";
		}else if(testmail.test(email.value)==false || email.value.indexOf('.',1)==-1){
				str+="◎ 電子郵件信箱格式錯誤\n";
		}
		if(code.value==""){
			str+="◎ 驗證碼未填\n";
		}else if(code.value.length!=6){
			str+="◎ 驗證碼為6位數字\n";
		}else if(isNaN(code.value)){
			str+="◎ 驗證碼請填入數字\n";
		}
		if(str!=""){
			alert("★★★注意★★★\n以下資料未填寫完整\n\n"+str+"\n\n請重新檢查您的資料再送出\n謝謝！！");
			return false;
		}else{
			document.getElementById("subbtn").style.display="none";
		}

	}
}