<!-- Original:  Eugene P. Amtower (gene-at-pc-backup-dot-com) -->
<!-- Web Site:  http://www.pc-backup.com -->
<!-- Date:  April 04, 2008         -->

<!-- Changes:                        -->
<!--            -->

function send_email(username, userdomain, bgcolor, fontcolor) {
	var vWinEmail = window.open("", "Email", "width=400,height=400,scrollbars=no");
	vWinEmail.opener = self;

	vWinEmail.document.open();

	// Setup the page...
	vWinEmail.document.writeln('<html>');
	vWinEmail.document.writeln('<head><title>Send an Email</title>');
	vWinEmail.document.writeln('<LINK REL="stylesheet" HREF="/filament.css">');
	vWinEmail.document.writeln('</head>');

	vWinEmail.document.writeln('<body bgcolor="' + bgcolor + '"><font color="' + fontcolor + '"');
	vWinEmail.document.writeln('<CENTER>Send an Email<\/CENTER><BR>');
  vWinEmail.document.writeln('<BR>Click below to compose an email...<BR><BR>');
  vWinEmail.document.writeln('<A HREF="mailto:' + username + '@' + userdomain + '" class="greenlink">' + username + '@' + userdomain + '</A>');
  vWinEmail.document.writeln('<BR><BR>(This popup window is an attempt at minimizing SPAM, the deadly scourge of our beloved Internet!)<BR><BR>');
  vWinEmail.document.writeln('<BR>When finished, click <a href="javascript:window.close();" class="greenlink" onclick="vWinEmail.close();">here</a> to close this window.<BR><BR>');

	vWinEmail.document.writeln('</font></body>');
	vWinEmail.document.writeln('</html>');
	vWinEmail.document.close();

}
