// JavaScript Document
//the function checks if the fields are all filled in, and if the email address input is right
function SendingMailResult(flag)
{
	if(flag)
	{
		alert("Success");
	}
	else
	{
		alert("Not success");
	}
}
