function showcard(card)
{
  cardwin=window.open("#","",'width=300,height=470,toolbar=no,location=no,directories=no,menubar=no,');
  cardwin.document.open();
  cardwin.document.writeln('<body bgcolor="#000000">');
  cardwin.document.writeln('<center><a href="javascript:window.close()">');
  cardwin.document.writeln('<img border=0 src="images/Card'+card+'.jpg">');
  cardwin.document.writeln('<p>CLOSE</a></center>');
  cardwin.document.writeln('</body>');
  cardwin.document.close();
}

function wintext(w,h,msg)
{
  textwin=window.open("#","",'width=' + w + ',height=' + h + ',toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes');
  textwin.document.open();
  textwin.document.writeln('<body bgcolor="#1E715E" text="#FFFFFF" link="#99FF99" vlink="#99FF99">');
  textwin.document.writeln(msg);
  textwin.document.writeln('<P><center><a href="javascript:window.close()"');
  textwin.document.writeln('>CLOSE</a></center>');
  textwin.document.writeln('</body>');
  textwin.document.close();
}

function showtext(msg)
{
  wintext(590, 460, msg);
}
// hide the mailto: links from spiders

// Usage:
// <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">to_link(4) </SCRIPT>.
// break the email address into four parts: two username parts (split as 
// you like) and two domain parts (split around a dot -- don't include the
// dot in either part, and don't include the fetch in any part.
function bare_link(a,b,c,d) 
{
  document.write("<A HR" + "EF=\"mai" + "l");
  document.write("to:" + a + b + "@");
  document.write(c + "." + d + "\">" + a + b);
  document.write("@" + c + "." + d +"<\/a>");
}

// Usage:
// <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">to_link() </SCRIPT>.
// Break the email address into four parts as above. The fifth argument is
// the name (text) you want displayed on the page as the link (rather than
// the bare email address).
function to_link(a,b,c,d,e) 
{
  document.write("<A HR" + "EF=\"mai" + "l");
  document.write("to:" + a + b + "@");
  document.write(c + "." + d + "\">" + e +"<\/a>");
}

function lsj_link()
{
  bare_link("vt", "esrep", "white-wolf", "com");
}

function me_link()
{
  to_link("vt", "esrep", "white-wolf", "com", "me");
}

function ww_link(a,b)
{
  bare_link(a,b,"white-wolf", "com");
}

// %s/<A HREF="mailto:[^"]*">\(..\)\([^@]*\)@\([^<]*\)\.\([^.<]*\)<\/A>/<SCRIPT LANGUAGE="JavaScript" TYPE="text\/javascript">bare_link("\1","\2","\3","\4")<\/SCRIPT>/g

//%s/<A HREF="mailto:\(..\)\([^@]*\)@\([^"]*\)\.\([^."]*\)">\([^<]*\)<\/A>/<SCRIPT LANGUAGE="JavaScript" TYPE="text\/javascript">to_link("\1","\2","\3","\4","\5")<\/SCRIPT>/g
