function ContactForm()
{
	var strEnter = "You must enter a";

	var fullname = document.getElementById( "fullname" );
	var emailaddress = document.getElementById( "emailaddress" );
	var phone = document.getElementById( "phone" );

	
	if( fullname.value == "" )
	{
		window.alert( strEnter + " Name " );
		return false;
	}
	
	if( emailaddress.value == "" )
	{
		window.alert( strEnter + " email address " );
		return false;
	}
	
	if( phone.value == "" )
	{
		window.alert( strEnter + " phone nr. " );
		return false;
	}
	

		
	return true;
}

