// JavaScript Document

function writeit(second, first, className, extra, inner) {
	if (inner == '')
	{
		inner = first + '@' + second;
	}
	document.write ('<a href="mailto:' + first + '@' + second + '"');
	if (extra != "")
	{
		document.write(extra);
	}
	if (className != "")
	{
		document.write('class="' + className + '"');
	}
	document.write('>' + inner + '</a>');
}



// JavaScript Document