function CheckForm()
{
	if( ($F('name') == '') || ($F('email') == '') || ($F('question') == '') )
	{
		// ## NAME #############################################################
		if( $F('name') == '' )
		{
			$('name').style.backgroundColor = '#FFF9F9';
		}
		else
		{
			$('name').style.backgroundColor = '#FFFFFF';
		}
		
		// ## EMAIL ############################################################
		if( $F('email') == '' )
		{
			$('email').style.backgroundColor = '#FFF9F9';
		}
		else
		{
			$('email').style.backgroundColor = '#FFFFFF';
		}
		
		// ## QUESTION #########################################################
		if( $F('question') == '' )
		{
			$('question').style.backgroundColor = '#FFF9F9';
		}
		else
		{
			$('question').style.backgroundColor = '#FFFFFF';
		}
		
		alert( 'Please fill in the shaded fields.' );
		
		return false
	}
	else
	{
		return true
	}
}
