function checkform()
{
	var errorflag = false	
	
	if (document.forms['whoswhoform'].txtWhy.value=="")
		errorflag = true
	if (document.forms['whoswhoform'].txtAchievements.value=="")
		errorflag = true
	if (document.forms['whoswhoform'].txtName.value=="")
		errorflag = true
	if (document.forms['whoswhoform'].txtCompany.value=="")
		errorflag = true
	if (document.forms['whoswhoform'].txtEmail.value=="")
		errorflag = true
	if (document.forms['whoswhoform'].txtName.value=="Enter name...")
		errorflag = true
	if (document.forms['whoswhoform'].txtCompany.value=="Company/Organisation name...")
		errorflag = true
	if (document.forms['whoswhoform'].txtEmail.value=="Email address...")
		errorflag = true
	
	if (errorflag == true)
	{
		alert("Please fill in all the required fields.")
		return false
	}
	else
		return true
}