// JavaScript Document
function MCP_emailAddr(e, h, i)
{
	if (!i)
	{
		dn="micompro.on.ca";
	} else {
		dn="partshandler.ca";
	}
    document.write('<a href="mailto:'+e+'@'+dn+'">');
    if (!h)
    {
    	document.write(e+'@'+dn+'</a>');
    } else {
    	document.write(h+'</a>');
    }
}