<!--
function chkLMCnt()
{ 

if(document.ppcontact.name.value=="")
	{
		alert("Please enter your  Name")
		document.ppcontact.name.focus()
		return false
	}

if(document.ppcontact.email.value=="")
	{
		alert("Please enter your Email Address")
		document.ppcontact.email.focus()
		return false
	}
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.ppcontact.email.value))
	{
	//return (true)
	}
	else
	{
	alert("Invalid E-mail Address! Please re-enter.")
	document.ppcontact.email.focus()
	return (false)
	}


if(document.ppcontact.question.value=="")
	{
		alert("Please fill in the Question box")
		document.ppcontact.question.focus()
		return false
	}



}

//-->