﻿function checkRegForm(){
		var form = null;

		try {
			form = new FormObject("AlanGoAhead");
			form.add( new Email("email", "e-mail 信箱") );
			form.add( new TextField("realname", "姓名") );
			form.add( new TextField("address", "新收件地址") );
			//form.add( new TextField("zipCode", "郵遞區號") );
			//form.add( new TextField("address", "地址") );
			form.add( new Radio("replyType", "回覆方式") );
			
			form.checkData();
		} catch(e) {alert(e.description);}
	}