<!--
function check_apply(){
	if( checkText('form1','email','Email',1,100) == false )
		return false;
	if( checkEmail('form1','email','Email') == false )
		return false;
	if( compareFields('form1','email','vemail','Emails') == false )
		return false;
	if( checkText('form1','password','Password',1,20) == false )
		return false;
	if( compareFields('form1','password','password2','Paaswords') == false )
		return false;
	if( document.form1.agree1.checked == false){
		alert('You must read Terms and Conditions.\nPlease check the appropiate box.');
		return false;
	}
	return true;		
}
//-->