function validate(currform) {
			var isValid = true;
			var errMsg = '';
			var formFocus;
							
			if (currform.first_name.value == '') {
				isValid = false;	
				errMsg = 'Please enter your First Name';
				currform.first_name.focus(); }
			if (isValid && currform.last_name.value == '') {
				isValid = false;	
				errMsg = 'Please enter your Last Name';
				currform.last_name.focus(); }
			if (isValid && currform.street_address.value == '') {
				isValid = false;	
				errMsg = 'Please enter your Street Address';
				currform.street_address.focus(); }	
			if (isValid && currform.city.value == '') {
				isValid = false;	
				errMsg = 'Please enter your City';
				currform.city.focus(); }
			if (isValid && currform.province.value == ''){
				isValid = false;	
				errMsg = 'Please enter your Province/State';
				currform.province.focus(); }	
			if (isValid && currform.postal_code.value == '') {
				isValid = false;	
				errMsg = 'Please enter your Postal Code';
				currform.postal_code.focus(); }	
			if (isValid && currform.work_phone.value == '') {
				isValid = false;	
				errMsg = 'Please enter your Work Phone Number';
				currform.work_phone.focus(); }
			if (isValid && currform.home_phone.value == '') {
				isValid = false;	
				errMsg = 'Please enter your Home Phone Number';
				currform.home_phone.focus(); }
			if (isValid && currform.email_address.value == '') {
				isValid = false;	
				errMsg = 'Please enter your Email Address';
				currform.email_address.focus(); }					
			
			
			
			if (!isValid) {
				alert(errMsg)
				return isValid; }
			return isValid; }
