<!--
function validateForm(form){
if(form.name.value==false)
	{
		alert("Please enter your Name")
		form.name.focus()
		return false
	}

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

if(form.WhyInterested.value==false)
	{
		alert("Please mention why you are interested in exploring this work")
		form.WhyInterested.focus()
		return false
	}

if(form.OnMyApproach.value==false)
	{
		alert("Please mention what about me or my approach speaks to you")
		form.OnMyApproach.focus()
		return false
	}

}
//-->