
<!--
function checkddemail(toCheck) {
  var i = 0
  var isNum = true;
  for (j = 0; j < toCheck.length; j++) {  if ((toCheck.substring(j,j+1) == "@")) {i++;}  }
  if ( i > 1) { isNum = false; }  return isNum;
}

function testForms(){
  var tmpfrm=document.getElementById('form1');
	 	 
  if (!tmpfrm.nname.value) {alert('請輸入您的姓名');
     tmpfrm.nname.focus(); return false;}
        	 
  if (!tmpfrm.tel.value) {alert('請輸入您的聯絡電話');
     tmpfrm.tel.focus(); return false;}
	 
  if (!tmpfrm.email.value) {alert('請輸入電子郵件');
     tmpfrm.email.focus(); return false;}
  else{ if (tmpfrm.email.value.indexOf("@")<3){
              alert("Sorry, 您的電子郵件有錯");
              tmpfrm.email.focus(); return false;} }
              
  if (!tmpfrm.comment.value) {alert('請輸入您的意見或問題');
     tmpfrm.comment.focus(); return false;}
  if (!tmpfrm.verify.value) {alert('請輸入驗證資料');
     tmpfrm.verify.focus(); return false;}
	 
}
//-->