//**************************************//
//                                      //
//	 Programing by ryan@ryanmills.net   //
//                                      //
//**************************************//


function processMail(){
	if(document.order_form.name.value != '' && document.order_form.address1.value != '' && document.order_form.address2.value != '' && document.order_form.email.value != '' && document.order_form.email2.value != ''){
		if(document.order_form.email.value == document.order_form.email2.value){
			document.order_form.submit();
		}else{
			alert('Your email address do not match');
		}// End if
	}else{
		alert('You must fully fill out the form');
	}// End if
}// End function processMail()
