/*
	Function:    mphr
	Called From: All web pages
	Description: Create dynamic document content for 'mailto' email invocation.
	Inputs:      id - Integer: Switching value to invoke different XHTML renderings.
	Outputs:     Dynamically created XHTML.
*/
function mphr(id) {
	var mailUser = new Array();
	mailUser[1] = 'gill' + 'andderek';
	var mailDom = 'talk' + 'talk.net';
	switch (id) {
		case 1:
			document.write('contact <a href="mai' + 'lto:' + mailUser[id] + '@' + mailDom + '">Gillian Ward</a> or ');
			break;
		default:
			break;
	}
};
