var mt = 'ailt';
var square = 'e.co';
var dom = '@c-'	// attempt to disguise the e-mail from spam-bots.
      + 'squar' + square + 'm';
var otherc = '.com';

function dispatch_message(where) {
  document.write('<a href="m' + mt + 'o:' + where + dom + '">' + where + dom + '</a>');
}

function dispatch_message_1(where,rest) {
  document.write('<a href="m' + mt + 'o:' + where + dom + '">' + rest + '</a>');
}

function dispatch_message_o(where,who) {
	document.write('<a href="m' + mt + 'o:' + where + '@' + who + otherc + '">'
					+ where + '@' + who + otherc + '</a>');
}

function bitch(msg) {
	alert("BITCH ABOUT " + msg);
}

function get_dispatch(where) {
	return '<a href="m' + mt + 'o:' + where + dom + '">' + where + dom + '</a>';
}