/**********************************************************************
 section 1 - form validation
 **********************************************************************/
function Validate(form)
		{
			var msg = "You need to enter your email and zip code...";
			var from = document.forms[0].from.value;
			var email = document.forms[0].email.value;
			// check for any space characters that may be input
		  	if (from == "" || from == null)
		  	{
		  		alert (msg);
		  		return false;
		  	}
		}
		
