function IsValidEmail(email){
	return /^(.+)+@(.+)$/.test(email);
}function reloadCaptcha(id){	var captcha = document.getElementById(id);	if (!captcha) return true;		captcha.src = "/captcha/?id=" + new Date().getTime();		return false;}