function counter()
{
	$('#counter').html(1000-$('#comment').val().length);
}

function checkform()
{
	var ok = true;

	if($('#name').val().length < 2 || $('#name').val().length > 50)
	{
		$('#name').css('backgroundColor', '#FFAFAF');
		ok = false;
	}

	if($('#email').val().length < 6 || $('#email').val().length > 100)
	{
		$('#email').css('backgroundColor', '#FFAFAF');
		ok = false;
	}

	if($('#comment').val().length < 3 || $('#name').val().length > 1000)
	{
		$('#comment').css('backgroundColor', '#FFAFAF');
		ok = false;
	}

	if(ok == true)
		$('#contactForm').submit();
	else
		return false;
}