function sendmail( wer, wo, subject )
{
	var sendmail = 'mailto:' + wer + '@' + wo + '?subject=' + subject;
	window.location.href = sendmail;
}
function printmail( wer, wo )
{
	document.write( wer + '@' + wo );
}
function printlink( wer, wo, subject )
{
	document.write( '<a href="javascript:sendmail(\'' + wer + '\', \'' + wo + '\', \''+ subject + '\');">' + wer + '@' + wo + '</a>' );
}
				   