function typeString(s)
{
	for (i=0; i<s.length; i++) 
		document.write(s.substring(i,i+1));
}

function writePost(before, mt1, mt2, after, m1, m2) 
{
	typeString('<a');
	typeString(before);
	typeString('mailto:');
	typeString(mt1);
	typeString('@');
	typeString(mt2);
	typeString(after);
	typeString('>');
	
	if(m2 == '')
	  typeString(m1);
	else
	  typeString(m1 + '@' + m2);
	  
	typeString("</a>");
}
