// JavaScript Document

function Init()
{
	document.form1.name.focus();	
}

function validateForm(form)
{	
	/* validate contact form data */
	
	// name
	if (document.form1.name.value == " ")
	{		
		alert("Please enter the nominee name.");
		return false;
	}	
	
	// email
	if (document.form1.email.value == " ")
	{		
		alert("Please enter your Email.");
		return false;
	}
	
	// email_confirm
	if (document.form1.email_confirm.value == " ")
	{		
		alert("Please confirm your email.");
		return false;
	}
	
	// subject
	if (document.form1.subject.value == " ")
	{		
		alert("Please enter the subject.");
		return false;
	}
	
	//comments/questions
	if (document.form1.comments.value == " ")
	{
		alert("Please enter your comment or question.");
		return false;
	}
}