//
// send email to
// --------------------


function sendMail(emailTag,emailDomain,emailName) {
	
	var answer=confirm("Please make table reservations at the restaurant by telephone only to avoid disappointment. Do you wish to continue and email us?")
	if (answer) {
			mailtoAddress = ("mailto:" + emailName + "@" + emailDomain + "." + emailTag + "");
			document.location = mailtoAddress;
	} else {
		
	}
	
}
