// Service routines

function mm_mto (mad) {
	_ad = mad.replace(/&/,"@");
	document.write("<a href=\"mailto:" + _ad + "\">" + _ad + "</a>");
	return;
}

//  A variant on the one above, which doesn't put in a mail link, but still hides what's
//  obviously an email address

function mm_ema (mad) {
	_ad = mad.replace(/&/,"@");
	document.write(_ad);
	return;
}

function mm_legal () {
	_p1 = "Damte is a Limited Company. Registered No: 5839968 in England and Wales.";
	_p2 = "Registered  address: 38 West Street,  Great Gransden, Sandy, SG19 3AU, UK.";
	_p3 = "VAT  No: GB 893 1136 19";
	document.write("<p>"+_p1+"</p><p>"+_p2+"</p><p>"+_p3+"</p>");
	return;
}

