<!--
var postdone = 0;
function validate(theform) {
	if (!theform.show1.checked && !theform.show2.checked && !theform.show3.checked) {
 		alert("至少要選一項活動");
                theform.show1.focus();
                return false; }
        if (theform.username.value=="") {
        	alert("請輸入「公司名稱」資料");
                theform.username.focus();
                return false; }
        if (theform.joiner_name.value=="") {
                alert("請輸入「參加者姓名」資料");
                theform.joiner_name.focus();
                return false; }
        if (theform.joiner_title.value=="") {
                alert("請輸入「參加者職稱」資料");
                theform.joiner_title.focus();
                return false; }
        if (theform.tel.value=="") {
                alert("請輸入「電話」資料");
                theform.tel.focus();
                return false; }
        if (theform.email.value.length =="") {
        	alert("請輸入「Email」資料");
                theform.email.focus();
                return false; }
	if (postdone==0) {
	  postdone = 1;
          return true;
        }
        else {
	  alert("資料傳送中，請稍候...");
          return false;
        }
}
-->


