// JavaScript Document
var wiz='@';
function mailto(name,server) {
	document.location.href='mailto:'+name+wiz+server;
}
function maillink(name,server,fontcolor,linktext) {
	var fc = '';
	var lt = name+wiz+server;
	if (fontcolor > '') {
		fc = 'style="color:' + fontcolor + '"';
	} else {
		fc = '';
	}
	if (linktext > '') {
		lt = linktext;
	}
	document.write('<a href="javascript:mailto(\''+name+'\',\''+server+'\');" '+fc+'>'+lt+'</a>');
}
