function newSubscribe() { 
	newsName = document.NewsSignup.NewsName.value; 
	newsCompany = document.NewsSignup.NewsCompany.value; 
	newsEmail = document.NewsSignup.NewsEmail.value; 
	
	errors = ""; 
	if (newsName == "Name...") 
		errors += "You did not enter your name.\n" ; 
	
	if (newsCompany == "Company...")
		errors += "You did not enter your company.\n"; 
	
	emailpattern = /^[\w\d\_\-\.]+@[\w\d\_\-\.]+\.[\w]{2,4}$/i; 
	if (!emailpattern.test(newsEmail)) { 
		errors += "You did not enter a valid email.\n"; 
	} 
	
	if (errors != "")
		alert("You must fix the following errors before we can process your subscription: \n\n" + errors); 
	else 
		document.NewsSignup.submit(); 
	
} 