function Validate()
{
	if( document.form.email2.value == "" )
	{
		document.getElementById('mess').innerHTML = '<span style="color:#CC0000;font-weight:bold;">A new password hasn\'t send. Please enter e-mail address</span>';
		return false;
	}
	return true;
}