
//---------------------//
//  Test Contact Data  //
//---------------------//
function testContactData(sFormName)
{
	sForm = document.getElementById("FormContact");
	
	if ( sForm.fullname.value.length < 1 )
	{
		alert('Please enter your Name before continuing.   ');
		sForm.fullname.focus( );
		return false;
	}
	else if ( sForm.email.value.length < 1 )
	{
		alert('Please enter your Email address before continuing.   ');
		sForm.email.focus( );
		return false;
	}
	
	return true;
}

