function message_check ( form )
{
	if (form.people_say_content.value == "")
	{
    alert( "Please fill up the \"Comment\" field." , "Boracay.com" );
    form.people_say_content.focus();
    return false ;
  }

	if (form.name.value == "")
	{
    alert( "Please fill up the \"Name\" field, with a minimum of 3 characters." );
    form.name.focus();
    return false ;
  }

	if (form.email.value == "")
	{
    alert( "Please fill up the \"Email\" field" );
    form.email.focus();
    return false ;
  }

  return true;
}
