<!-- 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) {
	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('</head>');

	vWinEmail.document.writeln('<body>');
	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 + '">' + 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();" onclick="vWinEmail.close();">here</a> to close this window.<BR><BR>');

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

}
