function validate(){
var cForm = document.forms["couponForm"];
var rePhone = /((\(\d{3}\)?)|(\d{3}))([\s-.]?)(\d{3})([\s-.]?)(\d{4})/;
var reName = /^[a-zA-Z]+(([\'\,\.\- ][a-zA-Z ])?[a-zA-Z]*)*$/;

if(!rePhone.test(cForm.Phone.value)){alert("Please add your phone # so we can match this coupon with any reciepts.");return false;}

if(!reName.test(cForm.Name.value)){alert("Please add your Name so we can match this coupon with any reciepts.");return false;}


window.print();
return true;
}