//stc_mail.js 
// Copyright 1997-2010 by STC Network Systems, James G. Shryne, Michael L. Foster.

//Change only "domainName ="

function stc_mail_domain (username, domainid){
	var domainName;
	domainName = 'thesilvercoyote.net';{
	}
	window.location = 'mailto:' + username + '@' + domainName;
	return;
}

function stc_mail (username) {
	stc_mail_domain(username);
	return;
}
