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

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

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

  return true;
}
