// JavaScript Document

function Form_Validator(frm)
{
	if (!MinLen(frm.co_name,"Name",1)) return(false);
	if (!MinLen(frm.co_rep,"Local Rep's Name",1)) return(false);	
	if (!MinLen(frm.co_email,"Email Address",1)) return(false);
return(true);
}