
function CheckContactForm()
{    	
	if (!CheckField('sender', '.{2,}'))
    {
        return false;
    }
    if (!CheckField('phone', '.{2,}'))
    {
        return false;
    }
	if (!CheckField('email', '.{3,}@.{3,}\..{2,}'))
    {
        return false;
    }

    document.ContactForm.submit(); 
}
