// JavaScript Document
function email(recipient) {
	var domain = "car-eng.com"
	window.location = "mailto:" + recipient + "@" + domain;
}