
function chkLMCnt(contactpc)
{ 

if(contactpc.name.value=="")
	{
		alert("Name is required")
		contactpc.name.focus()
		return false
	}

if(contactpc.email.value=="")
	{
		alert("Please enter your Email Address")
		contactpc.email.focus()
		return false
	}
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(contactpc.email.value))
	{
	//return (true)
	}
	else
	{
	alert("Invalid E-mail Address! Please re-enter.")
	contactpc.email.focus()
	return (false)
	}

if(document.getElementById('comments').value=="")
	{
		alert("Let us know why you are contacting us by filling in the Comments area.")
		document.getElementById('comments').focus()
		return false
	}

}


