﻿/**Javascript*/
function dangky()
{		
	var form 		= document.frm;	
	//Ho ten
	checkTextLength(form.sName.value,2,100,form.sName,'Bạn phải nhập đầy đủ họ tên');
	if(!checkAll())	return false;
	
	if(form.sPlace.value == 0)
	{
		alert('Bạn phải chọn nơi đăng ký');	
		form.sPlace.focus();
		return false;
	}
	//Dia chi
	checkTextLength(form.sAddress.value,2,100,form.sAddress,'Bạn phải nhập đầy đủ địa chỉ');
	if(!checkAll())	return false;
	//dien thoai
	//if(form.sTel.value != '')
	checkTelePhone(form.sTel.value,form.sTel,'Số điện thoại không hợp lệ');
	//checkIsNum(form.sTel.value,form.sTel,'Số điện thoại không hợp lệ')
	if(!checkAll())	return false;
	//
	if(form.sEmail.value != '')
		CheckFullEmail(form.sEmail.value,form.sEmail,'Địa chỉ email không hợp lệ');
	if(!checkAll())	return false;	
	if(form.imgSecurity.value.toLowerCase() != form.sImagesecurity.value.toLowerCase())
	{
		errormsg=errormsg+" Mã xác nhận hình ảnh chưa đúng \n";		
	}
	if(!checkAll())
	{
		form.sImagesecurity.focus();
		return false;
	}
	//
	if(checkAll()){	
		form.action="";
		form.submit();
		return true;
	}
	return false;
}

