	function nlsubform_proceed()
		{
		if(document.nlForm.df_tb_first_name){
		strText=document.nlForm.df_tb_first_name.value;
		if(strText.length>100){
		alert("Name must be less than 101 character(s) long.");
		document.nlForm.df_tb_first_name.focus();
		return(false);}}
		if(document.nlForm.df_tb_first_name){
		strText=document.nlForm.df_tb_first_name.value;
		if(strText.length<1){
		alert("Name is a required field.");
		document.nlForm.df_tb_first_name.focus();
		return(false);}}
		if(document.nlForm.df_tb_email){
		strText=document.nlForm.df_tb_email.value;
		if(strText.length>255){
		alert("Email must be less than 256 character(s) long.");
		document.nlForm.df_tb_email.focus();
		return(false);}}
		if(document.nlForm.df_tb_email){
		strText=document.nlForm.df_tb_email.value;
		if(strText.length<1){
		alert("Email is a required field.");
		document.nlForm.df_tb_email.focus();
		return(false);}}
		if(document.nlForm.df_tb_field_7){
		strText=document.nlForm.df_tb_field_7.value;
		if(strText.length>255){
		alert("How did you hear about us? must be less than 256 character(s) long.");
		document.nlForm.df_tb_field_7.focus();
		return(false);}}

		document.nlForm.func.value="subscribe";
		document.nlForm.submit();
		}
