'<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'

function checkfrm()
{
	the_form	= window.document.frmcontact;
	fullname	= the_form.fullname.value;
	email		= the_form.email.value;
	content		= the_form.content.value;

	if(fullname=='')
	{
		alert('Vui lòng ghi họ tên');
		the_form.fullname.focus();
		return false;
	}

	else if(email=='')
	{
		alert('Vui lòng ghi email của bạn');
		the_form.email.focus();
		return false;
	}

	else if(content=='')
	{
		alert('Vui lòng ghi nội dung ');
		the_form.content.focus();
		return false;
	}		
	return true;
}
