function checkFieldBack(fieldObj) 
	{
	if ( fieldObj.value != '' ) 
		{
		fieldObj.style.backgroundColor='#FFFFFF';
		}
	}

function checkform()
	{
	var form			= document.forms[0];
	var errors			= 0;

	if ( form.name.value == '' )
		{
		errors = 1;
		form.name.style.backgroundColor='#EC463E';
		}

	if ( form.email.value == '' )
		{
		errors = 1;
		form.email.style.backgroundColor='#EC463E';
		}

	if ( form.message.value == '' )
		{
		errors = 1;
		form.message.style.backgroundColor='#EC463E';
		}

	if ( errors == 1 ) 
		{
		alert( 'Please supply the information requested in red' );
		return false;
		}

	return true;
	}