//Creation now form
function check_creation_now(chk)
{
		var company_criteria  	= trim(chk.company_criteria.value);
		var title_list  		= trim(chk.title_list.value);	
		var contact_name  = trim(chk.contact_name.value);
		var title  		  = trim(chk.title.value);	
		var company  	  = trim(chk.company.value);
		var phone 		  = trim(chk.phone.value);
		var email		  = trim(chk.email.value);


		if(company_criteria == "")
		{
			alert("Please enter Company Criteria.\n\n(e.g. Fortune 500, Financial Services > $500M Revenue)");
			chk.company_criteria.focus();
			return false;
		}
		
		if(title_list == "")
		{
			alert("Please enter List of Titles.\n\n(e.g. VP or Dir of IT / All Sr. Marketing)");
			chk.title_list.focus();
			return false;
		}
				
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }

		if(title == "")
		{
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		}
				 		 
		if(company == "")
		{
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		}
		 
		 if(phone == "")
		 {
			alert("Please enter your phone number.");
			chk.phone.focus();
			return false;
		 }
		 				
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone number.");
			chk.phone.focus();
			return false;		  
		 }
		 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
}				 

//Direct eMail now form
function check_direct_now(chk)
{
		var company_criteria  	= trim(chk.company_criteria.value);
		var title_list  		= trim(chk.title_list.value);	
		var contact_name  = trim(chk.contact_name.value);
		var title  		  = trim(chk.title.value);	
		var company  	  = trim(chk.company.value);
		var phone 		  = trim(chk.phone.value);
		var email		  = trim(chk.email.value);


		if(company_criteria == "")
		{
			alert("Please enter Company Criteria.\n\n(e.g. Fortune 500, Financial Services > $500M Revenue)");
			chk.company_criteria.focus();
			return false;
		}
		
		if(title_list == "")
		{
			alert("Please enter List of Titles.\n\n(e.g. VP or Dir of IT / All Sr. Marketing)");
			chk.title_list.focus();
			return false;
		}
				
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }

		if(title == "")
		{
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		}
				 		 
		if(company == "")
		{
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		}
		 
		 if(phone == "")
		 {
			alert("Please enter your phone number.");
			chk.phone.focus();
			return false;
		 }
		 				
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone number.");
			chk.phone.focus();
			return false;		  
		 }
		 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
}

//Creation now form
function check_fortune(chk)
{
		var company_criteria  	= trim(chk.company_criteria.value);
		var title_list  		= trim(chk.title_list.value);	
		var contact_name  = trim(chk.contact_name.value);
		var title  		  = trim(chk.title.value);	
		var company  	  = trim(chk.company.value);
		var phone 		  = trim(chk.phone.value);
		var email		  = trim(chk.email.value);


		if(company_criteria == "")
		{
			alert("Please enter Company Criteria.\n\n(e.g. Fortune 500, Financial Services > $500M Revenue)");
			chk.company_criteria.focus();
			return false;
		}
		
		if(title_list == "")
		{
			alert("Please enter List of Titles.\n\n(e.g. VP or Dir of IT / All Sr. Marketing)");
			chk.title_list.focus();
			return false;
		}
				
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }

		if(title == "")
		{
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		}
				 		 
		if(company == "")
		{
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		}
		 
		 if(phone == "")
		 {
			alert("Please enter your phone number.");
			chk.phone.focus();
			return false;
		 }
		 				
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone number.");
			chk.phone.focus();
			return false;		  
		 }
		 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
}				 

//Enhancement frm
function check_enhancement_now(chk)
{
	
		var contact_name = trim(chk.contact_name.value);
		var company = trim(chk.company.value);
		var title = trim(chk.title.value);
		var phone = trim(chk.phone.value);
		var email = trim(chk.email.value);
		var enhance_other = trim(chk.enhance_other.value);
		
		if(chk.chkenhance_email.checked==false && chk.chkenhance_phone.checked==false && chk.chkenhance_company.checked==false && chk.chkenhance_title.checked==false && chk.chkenhance_address.checked==false && enhance_other=="")
		{
			alert("Please check the enhancement criteria\nor specify in Other field.");
			return false;
		}
		
		if(trim(chk.enhance_file.value)=="")
		{
			alert("Please attach the sample list for enhancement.");
			return false;
		}
		
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }
		 if(title == "")
		 {
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		 }				 
		 if(company == "")
		 {
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		 }
		 if(phone == "")
		 {
			alert("Please enter phone.");
			chk.phone.focus();
			return false;
		 }
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone.");
			chk.phone.focus();
			return false;
			 
		 }
				 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
			 
		 return true;
}	

//List Verification frm
function check_verification_now(chk)
{
	
		var contact_name = trim(chk.contact_name.value);
		var company = trim(chk.company.value);
		var title = trim(chk.title.value);
		var phone = trim(chk.phone.value);
		var email = trim(chk.email.value);
		var enhance_other = trim(chk.enhance_other.value);
		
		if(chk.chkenhance_email.checked==false && chk.chkenhance_phone.checked==false  && chk.chkenhance_record.checked==false && enhance_other=="")
		{
			alert("Please check the verification criteria\nor specify in Other field.");
			return false;
		}
		
		if(trim(chk.enhance_file.value)=="")
		{
			alert("Please attach the sample list for verification.");
			return false;
		}
		
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }
		 if(title == "")
		 {
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		 }				 
		 if(company == "")
		 {
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		 }
		 if(phone == "")
		 {
			alert("Please enter phone.");
			chk.phone.focus();
			return false;
		 }
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone.");
			chk.phone.focus();
			return false;
			 
		 }
				 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
			 
		 return true;
}
//Check Contact Us
function check_contactus(chk)
{
	
		var contact_name = trim(chk.contact_name.value);
		var company 	 = trim(chk.company.value);
		var title 		 = trim(chk.title.value);
		var phone 		 = trim(chk.phone.value);
		var email 		 = trim(chk.email.value);
		var comments 	 = trim(chk.comments.value);
		
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }
		 if(title == "")
		 {
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		 }				 
		 if(company == "")
		 {
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		 }
		 if(phone == "")
		 {
			alert("Please enter phone.");
			chk.phone.focus();
			return false;
		 }
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone.");
			chk.phone.focus();
			return false;
			 
		 }
				 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}

		 if(comments == "")
		 {
			alert("Please enter your comments/requirements.");
			chk.comments.focus();
			return false;
		 }
		
		 if(comments.length > 1500 )
		 {
			alert("Comments field can not contain more than 1500 characters.");
			chk.comments.focus();
			return false;
		 }
		
					 
		 return true;
}	

//Newsletter form
function check_newsletter(chk)
{
		var contact_name  = trim(chk.contact_name.value);
		var company  	  = trim(chk.company.value);
		var email		  = trim(chk.email.value);
		var phone		  = trim(chk.phone.value);
		var title		  = trim(chk.title.value);
				
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }
				 		 
		if(title == "")
		 {
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		 }				 
		 if(company == "")
		 {
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		 }
		 
		 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
		if(phone == "")
		 {
			alert("Please enter phone.");
			chk.phone.focus();
			return false;
		 }
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone.");
			chk.phone.focus();
			return false;
			 
		 }
		 /*if(chk.no_cost_trial.checked == false)
		 {
			alert("Please check Sign Up for No Cost Trial.");
			chk.no_cost_trial.focus();
			return false;
		 }*/
		 
}				 


//Newsletter form
function check_signup(chk)
{
		var contact_name  = trim(chk.contact_name.value);
		var company  	  = trim(chk.company.value);
		var email		  = trim(chk.email.value);

		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }
				 		 
					 
		 if(company == "")
		 {
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		 }
		 
		 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
		
		 
}
//Website integration form
function check_integration_now(chk)
{
		var contact_name  = trim(chk.contact_name.value);
		var company  	  = trim(chk.company.value);
		var email		  = trim(chk.email.value);
		var phone		  = trim(chk.phone.value);
		var title		  = trim(chk.title.value);
				
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }
				 		 
		if(title == "")
		 {
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		 }				 
		 if(company == "")
		 {
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		 }
		 
		 
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
		if(phone == "")
		 {
			alert("Please enter phone.");
			chk.phone.focus();
			return false;
		 }
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone.");
			chk.phone.focus();
			return false;
			 
		 }
		 /*if(chk.no_cost_trial.checked == false)
		 {
			alert("Please check Sign Up for No Cost Trial.");
			chk.no_cost_trial.focus();
			return false;
		 }*/
		 
}	


//Website seo free report form
function check_seo_freereport(chk)
{
		var contact_name  = trim(chk.contact_name.value);
		var company  	  = trim(chk.company.value);
		var email		  = trim(chk.email.value);
		var phone		  = trim(chk.phone.value);
		var title		  = trim(chk.title.value);
		var website		  = trim(chk.website.value);
		var freereport		  = trim(chk.freereport.value);
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }
				 		 
		if(title == "")
		 {
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		 }				 
		 if(company == "")
		 {
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		 }
		 if(website == "")
		 {
			alert("Please enter your website URL.");
			chk.website.focus();
			return false;
		 }
		 if(!checkURL(website))
		 {
			alert("Please enter valid website URL.");
			chk.website.focus();
			return false;		  
		 }
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
		if(phone == "")
		 {
			alert("Please enter phone.");
			chk.phone.focus();
			return false;
		 }
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone.");
			chk.phone.focus();
			return false;
			 
		 }
		 
		 if(freereport == "")
		 {
			alert("Please enter Specify the URL for a Free Report.");
			chk.freereport.focus();
			return false;
		 }
		 if(!checkURL(freereport))
		 {
			alert("Please enter valid URL.");
			chk.freereport.focus();
			return false;		  
		 }
}	

//Website sem free report form
function check_sem_freereport(chk)
{
		var contact_name  = trim(chk.contact_name.value);
		var company  	  = trim(chk.company.value);
		var email		  = trim(chk.email.value);
		var phone		  = trim(chk.phone.value);
		var title		  = trim(chk.title.value);
		var website		  = trim(chk.website.value);
		
		if(contact_name == "")
		 {
			alert("Please enter your name.");
			chk.contact_name.focus();
			return false;
		}
		if(isNotAlphabets(contact_name))
		 {
			alert("Invalid characters in name.");
			chk.contact_name.focus();
			return false;		  
		 }
				 		 
		if(title == "")
		 {
			alert("Please enter your title.");
			chk.title.focus();
			return false;
		 }				 
		 if(company == "")
		 {
			alert("Please enter your company name.");
			chk.company.focus();
			return false;
		 }
		 if(website == "")
		 {
			alert("Please enter your website URL.");
			chk.website.focus();
			return false;
		 }
		 if(!checkURL(website))
		 {
			alert("Please enter valid website URL.");
			chk.website.focus();
			return false;		  
		 }
		 if(email == "")
		 {
			alert("Please enter your email address.");
			chk.email.focus();
			return false;
		 }
		 				
		 if(!checkEmail(email))
		 {
			alert("Please enter valid email address.");
			chk.email.focus();
			return false;		  
		 }

		var checkDomain = email.indexOf('yahoo.') & email.indexOf('gmail.') & email.indexOf('aol.') & email.indexOf('msn.') & email.indexOf('hotmail.') & email.indexOf('earthlink.') & email.indexOf('rediffmail.') & email.indexOf('kotov.') & email.indexOf('mail.');
		
		if(checkDomain>0)
		{
			alert("You have entered an email account from a free email service or one of the high-volume consumer service providers (i.e. AOL, Gmail, Yahoo, MSN, Hotmail, Earthlink, Rediffmail, etc).\nIn an effort to provide you with the best possible access to our services, we require that you enter your corporate email address.");
			chk.email.focus();
			return false;
		}
		if(phone == "")
		 {
			alert("Please enter phone.");
			chk.phone.focus();
			return false;
		 }
		 if(isNotNumeric(phone))
		 {
			alert("Invalid characters in phone.");
			chk.phone.focus();
			return false;
			 
		 }
		 
		 		 
}