var email_sites = {
	'dealers'				:	'tcon.ca',
	'programming'			:	'tcon.ca',
	'tcon'					:	'icomm.ca',
	'teameh'				:	'hotmail.com',
	'thekeithandgaryshow'	:	'cogeco.ca',
	'dtfb'					:	'pathcom.com',
	'guru'					:	'vex.net',
	'DaveB'					:	'Region13.org',
	'dx4_ducky'				:	'sympatico.ca',
	'yyzip_groupres'		:	'hilton.com',
	'tt-hotel'				:	'tcon.ca',
	'charity'				:	'tcon.ca',
	'the52blues'			:	'yahoo.com'
}

function write_email(email_no, subject_text, page_text, class_text) {
	if (subject_text == null) {
		subject_text = '';
	}
	if (subject_text != '') {
		subject_text = '?Subject=' + subject_text;
	}
	if (page_text == null) {
		page_text = email_no + '@' + email_sites[email_no] + '</a>';
	} else {
		page_text = page_text + '</a>';
	}
	if (class_text != '') {
		class_text = ' class=' + class_text;
	}
	document.write('<a' + class_text + ' href=\"mailto:' + email_no + '@' + email_sites[email_no] + subject_text + '\">');
	document.write(page_text);
}


