var frmvalidator = new Validator("comment-form");

frmvalidator.addValidation("comment-name","req",
	"Please enter your name.");
frmvalidator.addValidation("comment-name","maxlen=50",
	"Max length for name is 50");
frmvalidator.addValidation("comment-name","alpha");

frmvalidator.addValidation("comment-email","maxlen=50");
frmvalidator.addValidation("comment-email","req",
	"Please enter your email address so we can respond to your concerns.");
frmvalidator.addValidation("comment-email","email");

frmvalidator.addValidation("inquiry","req",
	"The message box should not be left blank if you want to send us a message.");
