function Check2(theForm)
{
if(theForm.name.value=="")
{
	alert("Sorry,fill in the name!");
	theForm.name.focus();
	return false;
}

if (theForm.email.value=="") {
	alert("Sorry,fill in the email!");
	theForm.email.focus();
	return false;
}

var emailPat=/^(.+)@(.+)$/;
var matchArray=theForm.email.value.match(emailPat);
if (matchArray==null) {
	alert("Sorry,fill in the email!");
	theForm.email.focus();
	return false;
}

if(theForm.selCountry.value=="NA")
{
	alert("Sorry,fill in the Country!");
	theForm.selCountry.focus();
	return false;
}

if(theForm.body.value=="")
{
	alert("Sorry,fill in the content!");
	theForm.body.focus();
	return false
}

	return true;
}