
function validateform( objform )
{
	var retVal = ( ValidateControl( objform.Name, true, 'text', 'Name' )
			&& ValidateControl( objform.Suburb, true, 'text', 'Suburb' )
			&& ValidateControl( objform.Phone, true, 'phone', 'Telephone Number, including area code' )
			&& ValidateControl( objform.vp, true, 'text', 'Code' ) );

	if (retVal)
	{
		objform.BtnSubmit.disabled=true;
	}
	return retVal;
}