
function check()
{
	if (document.frm2.name.value=='')
	{
		alert('Fill up the Name first');
		document.frm2.name.focus();
		return false;
	}
	if (document.frm2.email.value=='')
	{
		alert('Fill up the Email Address');
		document.frm2.email.focus();
		return false;
	}
}

