function createMail(who,what,where,why) {

// NOTE: THIS IS ONLY DESIGNED FOR A MAX OF TWO ADDRESSES !!

	var strWhere = '@' + where;
	if (strWhere == '@') { strWhere = strWhere + 'drumsontheroad.com'; }

	var strWhat = what;
	if (strWhat == '') { strWhat = 'E-Mail from DotR Website'; }

	var strWhy = why;

	var strTo = '';
	var strCc = '';

	var strWho = who;
	if (strWho == '') {
		strTo = 'enquiries';
		strTo = strTo + '@drumsontheroad.com';
		strWhat = 'Incorrect mail link on website';
		strWhy = 'Please tell the webmaster where you found this link as it is incorrectly formatted.';
	}
	else {
		var lngComma = strWho.indexOf(',')
		if (lngComma > 0) {
			strTo = strWho.substr(0,lngComma) + strWhere;
			strCc = strWho.substr(lngComma + 1, strWho.length - lngComma) + strWhere;
		}
		else {
			strTo = strWho + strWhere;
		}
	}

	var to = strTo;
	var cc = strCc;
	var bcc = '';
	var subject = strWhat;
	var body = strWhy;
	var doc = "mailto:" + to +
		"?cc=" + cc +
		"&bcc=" + bcc +
		"&subject=" + escape(subject) +
		"&body=" + escape(body);
	window.location = doc;
}
