//theValidator.required( "EmailForm", "recipient","Please enter a valid email address for your friend", "EMAIL" );
theValidator.required( "EmailForm", "recipient","Please enter a valid list of email addresses separated by commas.", "EMAIL_LIST" );
theValidator.required( "EmailForm", "sender_name","Please enter your name", "REGULAR" );
theValidator.required( "EmailForm", "sender_email","Please enter a valid email address", "EMAIL" );
theValidator.required( "EmailForm", "captcha_code","Please enter the text displayed in the image.", "REGULAR" );

$(document).ready( function() {

	$('.js-warning').remove();
	$.get( '/token.php', function( txt ) {
		$('.secure-form').append('<input type="hidden" name="ts" value="' + txt + '" />' );
	});
}
);

